summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-29Fix decoding of address in JP and JPCC instructions in the Z80 coreMike Pavone
2013-04-29Properly handle wrapping around to 0 in translate_z80_streamMike Pavone
2013-04-29Fix bug in end condition inside translate_z80_stream.Mike Pavone
2013-04-29Squashing some bugs introduced when I switched the register assignments for ↵Mike Pavone
z80_write_byte around.
2013-04-29Implement retranslating code when written to. Possibly broken, need to fix ↵Mike Pavone
some other bugs before a proper test.
2013-04-29Fix target cycle count after 68K interruptMike Pavone
2013-04-29Implemented basic interrupt support in Z80 core.Mike Pavone
2013-04-29Forgot to commit zruntime a while back, adding it now.Mike Pavone
2013-04-28Implement ADC and SBC in Z80 core (untested)Mike Pavone
2013-04-28Implement rotation and bit set/reset instructions (untested).Mike Pavone
2013-04-28Implement RETCC in Z80 core.Mike Pavone
2013-04-28Implement cartridge rom loading in transz80Mike Pavone
2013-04-28Implement cycle limit in Z80 core.Mike Pavone
2013-04-28Implement EI, DI and IM in the Z80 coreMike Pavone
2013-04-28Implemente CP (untested)Mike Pavone
2013-04-28Implement EX, EXX and RST in Z80 coreMike Pavone
2013-04-28Add header dependencies to offsetsMike Pavone
2013-04-26Implement BIT and DJNZ (tested). Fix register mapping for IYL.Mike Pavone
2013-04-26Added the rest of the conditions to JPCC, implemented CALLCC (untested)Mike Pavone
2013-04-26Added key to save Z80 RAM to a fileMike Pavone
2013-04-25Implement more Z80 instructions (untested)Mike Pavone
2013-04-25Get Z80 core working for simple programsMike Pavone
2013-04-22Add shadow/higlight info to debug rendererMike Pavone
2013-04-22Less broken implementation of shadow/highlightMike Pavone
2013-04-22Shadow and higlight operators were switchedMike Pavone
2013-04-22Added todo listMike Pavone
2013-04-22Implemented shadow hilight mode.Mike Pavone
2013-04-21Improve color rendering accuracy and optimize SDL renderer a bitMike Pavone
2013-04-21Fix overflow detection in divs. Fix negative immediate source for divsMike Pavone
2013-04-21Added test cases for divs/divu and added divide by zero handler to test ↵Mike Pavone
generator
2013-04-21Implement CHK instruction (not fully tested).Mike Pavone
2013-04-21Fixed a couple bugs in roxl/roxr. X flag wasn't being saved properly and ↵Mike Pavone
rotates of more than 31 bits were messed up as the X flag was being thrown away between the first 31 bits of rotate and the rest.
2013-04-21Added testcases for move and roxl/roxr. Made some small improvements to test ↵Mike Pavone
tools.
2013-04-20Fix muls with a negative immediate source.Mike Pavone
2013-04-20Added testcases for muls, mulu, abcd and sbcdMike Pavone
2013-04-20Fix modulo on bit operations with a memory destinationMike Pavone
2013-04-20Add support for picking random numbers in a larger range in test generator. ↵Mike Pavone
Add support for running a subset of tests in runner. Added testcases for bit and rotate instructions.
2013-04-20Fix overflow flag behavior for lsl/lsr/asrMike Pavone
2013-04-20Fix autoincrement on a7 when used as a destination in a byte sized instructionMike Pavone
2013-04-20Added testcases file. Some fixes to test generator for dealing with indexed ↵Mike Pavone
mode with base and index reg the same. Added support for blastem headless mode in test runner.
2013-04-19Fix some bugs related to sign-extension of address registers and ↵Mike Pavone
pre-decrement amount for a7 when used as a source.
2013-04-19Added headless flag to avoid initializing SDL and opening a window when ↵Mike Pavone
running tests.
2013-04-19Add test generator, builder and runnerMike Pavone
2013-04-16Make reset trigger debug exit to make it easier to test the same cases in ↵Mike Pavone
blastem and musashi. Fix asl #1 overflow flag.
2013-04-16Fixed up trans for changes to translate_m68k_stream, but still need to deal ↵Mike Pavone
with missing callbacks.
2013-04-16Small bit of cleanupMike Pavone
2013-01-27Fix movem reg to mem for certain addressing modesMike Pavone
2013-01-26Flag fixes for div, negx and notMike Pavone
2013-01-26Tweaks to make blastem compatible with m68k-testerMike Pavone
2013-01-25Fix overflow flag on ASLMike Pavone