MOS 6502 Emulator
Go to file
jborza 2ddcf62212 fixed zero flag handling in LDA, LDX, LDY
added BEQ+test
split memory function to a separate module
2019-04-27 12:43:15 +02:00
data added stubs for missing instructions to cpu 2019-04-14 15:15:15 +02:00
.gitignore LDY instruction + tests 2019-04-14 22:20:32 +02:00
LICENSE Initial commit 2019-04-13 22:07:31 +02:00
README.md Update README.md 2019-04-15 19:38:43 +02:00
azure-pipelines.yml Update azure-pipelines.yml for Azure Pipelines - run test 2019-04-14 13:29:54 +02:00
cpu.c fixed zero flag handling in LDA, LDX, LDY 2019-04-27 12:43:15 +02:00
cpu.h PHA, PLA, TXS, TYS, TSX, TSY + tests 2019-04-16 22:46:28 +02:00
disassembler.c complete set of opcodes in header and disassembler 2019-04-14 15:07:14 +02:00
disassembler.h introduced test6502 module for tests 2019-04-14 12:39:56 +02:00
emu6502.c implemented SBC, ASL 2019-04-19 11:38:52 +02:00
emu6502.sln gitignore + vs2019 solution 2019-04-14 12:37:17 +02:00
emu6502.vcxproj fixed zero flag handling in LDA, LDX, LDY 2019-04-27 12:43:15 +02:00
flags.h naming conventions + types 2019-04-13 10:28:57 +02:00
makefile makefile fix 2019-04-27 12:19:50 +02:00
memory.c fixed zero flag handling in LDA, LDX, LDY 2019-04-27 12:43:15 +02:00
memory.h fixed zero flag handling in LDA, LDX, LDY 2019-04-27 12:43:15 +02:00
opcodes.h complete set of opcodes in header and disassembler 2019-04-14 15:07:14 +02:00
state.h initial emulation 2019-04-13 23:59:48 +02:00
test6502.c fixed zero flag handling in LDA, LDX, LDY 2019-04-27 12:43:15 +02:00
test6502.h introduced test6502 module for tests 2019-04-14 12:39:56 +02:00
types.h fixed zero flag handling in LDA, LDX, LDY 2019-04-27 12:43:15 +02:00

README.md

Build Status

emu6502

MOS 6502 Emulator