1
0
mirror of https://github.com/jscrane/r65emu.git synced 2025-08-05 05:26:24 +00:00

fixes for Energia IDE

This commit is contained in:
Stephen Crane
2017-10-05 09:55:39 +01:00
parent fc7ded7f40
commit e181f8e483
2 changed files with 6 additions and 6 deletions

View File

@@ -1020,17 +1020,17 @@ z80::z80(Memory &m, PortDevice<z80> &ports): CPU(m)
*p++ = &z80::retpo; *p++ = &z80::pophl;
*p++ = &z80::jppo; *p++ = &z80::exSPhl;
*p++ = &z80::callpo; *p++ = &z80::pushhl;
*p++ = &z80::and; *p++ = &z80::rst20;
*p++ = &z80::and_; *p++ = &z80::rst20;
*p++ = &z80::retpe; *p++ = &z80::jphl;
*p++ = &z80::jppe; *p++ = &z80::exdehl;
*p++ = &z80::callpe; *p++ = &z80::ed;
*p++ = &z80::xor; *p++ = &z80::rst28;
*p++ = &z80::xor_; *p++ = &z80::rst28;
// 0xf0
*p++ = &z80::retp; *p++ = &z80::popaf;
*p++ = &z80::jpp; *p++ = &z80::di;
*p++ = &z80::callp; *p++ = &z80::pushaf;
*p++ = &z80::or; *p++ = &z80::rst30;
*p++ = &z80::or_; *p++ = &z80::rst30;
*p++ = &z80::retm; *p++ = &z80::ldsphl;
*p++ = &z80::jpm; *p++ = &z80::ei;
*p++ = &z80::callm; *p++ = &z80::fd;