index
:
blastem.git
gdb
libretro
vdp-hacking
Oxore's fork of "blastem" emulator for ROM hacking (C)
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
z80_to_x86.c
Age
Commit message (
Collapse
)
Author
2013-05-02
Fix IX/IY displace modes. Fix check for registers requiring REX.
Mike Pavone
2013-05-02
Sync Z80 on writes to busreq/reset ports. NULL out extra_pc on z80 reset
Mike Pavone
2013-05-02
Don't mix *H regs with the REX prefix
Mike Pavone
2013-05-01
Fix some more retranslation bugs in the Z80 core
Mike Pavone
2013-05-01
Fix a crash bug in instruction retranslation
Mike Pavone
2013-04-30
Implement ld to and from the I and R registers
Mike Pavone
2013-04-30
Implement LDIR and fix a bug in which context was not restored after a call ↵
Mike Pavone
to z80_handle_code_write
2013-04-30
Fix a remaining z80_write reg swap bug. Properly initialize the native map ↵
Mike Pavone
slots. Reset appropriate regs when z80_reset is called.
2013-04-29
Implement CCF and SCF
Mike Pavone
2013-04-29
Properly handle wrapping around to 0 in translate_z80_stream
Mike Pavone
2013-04-29
Fix bug in end condition inside translate_z80_stream.
Mike Pavone
2013-04-29
Squashing some bugs introduced when I switched the register assignments for ↵
Mike Pavone
z80_write_byte around.
2013-04-29
Implement retranslating code when written to. Possibly broken, need to fix ↵
Mike Pavone
some other bugs before a proper test.
2013-04-29
Implemented basic interrupt support in Z80 core.
Mike Pavone
2013-04-28
Implement ADC and SBC in Z80 core (untested)
Mike Pavone
2013-04-28
Implement rotation and bit set/reset instructions (untested).
Mike Pavone
2013-04-28
Implement RETCC in Z80 core.
Mike Pavone
2013-04-28
Implement EI, DI and IM in the Z80 core
Mike Pavone
2013-04-28
Implemente CP (untested)
Mike Pavone
2013-04-28
Implement EX, EXX and RST in Z80 core
Mike Pavone
2013-04-26
Implement BIT and DJNZ (tested). Fix register mapping for IYL.
Mike Pavone
2013-04-26
Added the rest of the conditions to JPCC, implemented CALLCC (untested)
Mike Pavone
2013-04-25
Implement more Z80 instructions (untested)
Mike Pavone
2013-04-25
Get Z80 core working for simple programs
Mike Pavone
2013-04-16
Make reset trigger debug exit to make it easier to test the same cases in ↵
Mike Pavone
blastem and musashi. Fix asl #1 overflow flag.