patch type
ZXNet echo conference «zxnet.pc»
From Stanislav Lomakin → To All 17 March 2006
Hello, boo_boo
heh, but in ZEMU the duration of int is not emulated: rolleyes:
on the next version of z80ex (I haven’t posted it yet, but prefixes are processed there
separate step) this is especially noticeable - int sometimes comes immediately after
prefix, breaks off, and sleeps until the next frame. IMHO it should be approximately
like this:
┌─- CODE ───
if (currClk>=INT_BEGIN && currClk < (INT_BEGIN + 32/*INT len*/))
{
cmdClk = z80ex_int(cpu);
currClk += cmdClk;
clk += cmdClk;
}
└── CODE ───