summaryrefslogtreecommitdiff
path: root/m68k_to_x86.c
AgeCommit message (Collapse)Author
2012-12-26Initial stab at interrupt support. Make native code offsets bigger so I ↵Mike Pavone
don't have to worry about overflowing the offset. Implement neg and not (untested).
2012-12-22Add support for indexed modes as a source, some work on jmp and jsr with ↵Mike Pavone
areg indirect mode
2012-12-21Added untested support for LINK and UNLKMike Pavone
2012-12-21Removed some old debug printfsMike Pavone
2012-12-21Implement JSR for some addressing modesMike Pavone
2012-12-21Fix some bugs in movem with a register list destinationMike Pavone
2012-12-21Implement a couple of supervisor instructionsMike Pavone
2012-12-21Implement more instructions and address modesMike Pavone
2012-12-20Make the translator bail out if it hits an instruction I haven't implemented yetMike Pavone
2012-12-20Fix BTSTMike Pavone
2012-12-20Gamepad supportMike Pavone
2012-12-19Cleanup 68K timing code. Temporarily omment out fFPS counter as it was ↵Mike Pavone
causing segfaults
2012-12-19Add support for BTST instruction (untested), absolute addressing mode for ↵Mike Pavone
instructions other than move (untested) and fix decoding of MOVEM.
2012-12-18ecx was getting clobbered before the relevant temp value was used in some ↵Mike Pavone
cases during memory reads
2012-12-18Get Flavio's color bar demo kind of sort of workingMike Pavone
2012-12-16Add preliminary support for JMPMike Pavone
2012-12-16Implement CLR, minor refactor of register offset calculation in context structMike Pavone
2012-12-15Implement shift instructions (asl, lsl, asr, lsr). Add flags to register ↵Mike Pavone
printout. Fix minor bug in shift/rotate instruction decoding.
2012-12-12Add untested support for and, eor, or, swap, tst and nop instructions. Add ↵Mike Pavone
call to m68k_save_result for add and sub so that they will properly save results for memory destinations
2012-12-12Add support for dbcc instructionMike Pavone
2012-12-04Initial support for M68k reset vector, rather than starting at an arbitrary ↵Mike Pavone
address
2012-12-04M68K to x86 translation works for a limited subset of instructions and ↵Mike Pavone
addressing modes
2012-11-27x86 code gen, initial work on translatorMike Pavone