Tue, 12 May 2015 19:14:09 -0700 |
Michael Pavone |
Save PC to context struct when syncing Z80 at instruction start. This fixes saving savestates and probably the Z80 debugger as well
|
Mon, 11 May 2015 20:34:33 -0700 |
Michael Pavone |
Remove/comment verbose logging added for tracking down sync bug
|
Mon, 11 May 2015 00:28:47 -0700 |
Michael Pavone |
Sync fixes and logging to fix more sync issues
|
Sun, 04 Jan 2015 23:35:55 -0800 |
Michael Pavone |
Merge
|
Sat, 03 Jan 2015 21:35:23 -0800 |
Michael Pavone |
When going directly from reset to busreq, do not allow the Z80 to run
|
Sat, 03 Jan 2015 18:49:07 -0800 |
Michael Pavone |
Restore Z80 interrupt pulse duration and make a small improvement to debug print output
|
Sat, 03 Jan 2015 18:23:04 -0800 |
Michael Pavone |
Made the Z80 core more contained by refactoring some code in blastem.c into z80_to_x86.c
|
Sat, 03 Jan 2015 16:08:23 -0800 |
Michael Pavone |
All cycle counters are now based off the master clock. This seems to have messed up Z80 interrupt timing (music in Sonic 2 is too slow for instance), but things are generally working
|
Fri, 02 Jan 2015 13:47:34 -0800 |
Michael Pavone |
In theory, the Z80 core should work on 32-bit builds now; however, I suspect there is some code that cannot deal with most of the Z80 registers not having a native register so more work will be needed
|
Fri, 02 Jan 2015 13:14:09 -0800 |
Michael Pavone |
Added functions to gen_x86 for saving and restoring callee save registers to better abstract over ABI differences between x86 and x86-64
|
Fri, 02 Jan 2015 12:04:58 -0800 |
Michael Pavone |
Use SZ_PTR instead of SZ_Q in Z80 core for 32-bit compat
|
Fri, 02 Jan 2015 00:19:10 -0800 |
Michael Pavone |
Sync Z80 when taking an interrupt so that int_cycle gets updated
|
Thu, 01 Jan 2015 23:37:24 -0800 |
Michael Pavone |
Remove dedicated registers for Z80 bank reg and Z80 bank pointer as they are no longer used
|
Thu, 01 Jan 2015 22:18:32 -0800 |
Michael Pavone |
Add the 3 cycle delay back in to Z80 bank area access
|
Thu, 01 Jan 2015 20:26:22 -0800 |
Michael Pavone |
Minor Z80 core cleanup
|
Thu, 01 Jan 2015 20:07:47 -0800 |
Michael Pavone |
Use call_args and call_args_abi in Z80 core
|
Thu, 01 Jan 2015 14:36:55 -0800 |
Michael Pavone |
Remove some of the hard coded assumptions about the memory map from the CPU cores
|
Tue, 30 Dec 2014 19:11:34 -0800 |
Michael Pavone |
Merge
|
Tue, 16 Dec 2014 01:10:54 -0800 |
Michael Pavone |
Fix flags for rra, rrca, rla and rlca. Fix timing for rr, rrc, rl and rlc when using IX or IY. Fix access to I and R registers (R still needs to be made 7-bit though). Fix flags for ld a, i. The fix for access to I fixes PCM playback in Titan Overdrive and music playback in Crackdown.
|
Wed, 03 Dec 2014 09:30:01 -0800 |
Michael Pavone |
Temporarily comment out code to translate Z80 instructions in place as in rare cases it can stomp the next instruction if a branch goes from a short from to a long one
|
Sat, 21 Jun 2014 09:36:15 -0700 |
Michael Pavone |
Fix Z80 interrupts
|
Fri, 20 Jun 2014 07:57:32 -0700 |
Michael Pavone |
Added some preliminary support for interpreting Z80 code from non-RAM addresses
|
Thu, 19 Jun 2014 19:50:16 -0700 |
Michael Pavone |
Properly handle Z80 breakpoints on self-modifying code and setting Z80 breakpoints before the Z80 program has been loaded
|
Thu, 19 Jun 2014 08:14:35 -0700 |
Michael Pavone |
Slight cleanup of vint handling on the Z80
|
Mon, 29 Dec 2014 23:08:39 -0800 |
Michael Pavone |
Fix handling of code writes for Z80 core. This seems to get things close to being back to where they were before the big refactor that broke the Z80 core. Some problems remain. Notably the sound driver in Sonic 2 is still quite broken.
|
Fri, 26 Dec 2014 15:45:31 -0800 |
Michael Pavone |
Fix a few bugs introduced in the Z80 core from the adjustments to fit with the code gen refactor
|
Fri, 26 Dec 2014 12:56:53 -0800 |
Michael Pavone |
Fix an off-by-one error in a branch destination in the generation of handle_cycle_limit for the Z80
|
Fri, 26 Dec 2014 12:52:13 -0800 |
Michael Pavone |
Update code->cur before calling z80_get_address_trans in z80_retranslate_inst to avoid any newly translated instructions from being placed in the "buffer zone". Save the current value of the code_info struct for placing the final jmp instruction in the correct place
|