1 # 6502 Emulator 2 3 A very simple 6502 emulator that can succesfully pass 4 [6502_functional_test](https://github.com/Klaus2m5/6502_65C02_functional_tests). 5 6 ## Resources used 7 8 - W65C02S datasheet (newer 6502): 9 https://eater.net/datasheets/w65c02s.pdf 10 - 6502 Instruction Set: 11 https://www.masswerk.at/6502/6502_instruction_set.html 12 - 6502 Assembly: 13 https://en.wikibooks.org/wiki/6502_Assembly 14 - 27c3: Reverse Engineering the MOS 6502 CPU (en): 15 https://www.youtube.com/watch?v=fWqBmmPQP40 16 - NES Emulator Part #2: The CPU (6502 Implementation): 17 https://www.youtube.com/watch?v=8XmxKPJDGU0 18 - Emulator 101 - 6502 Addressing Modes: 19 http://www.emulator101.com/6502-addressing-modes.html 20 - “Hello, world” from scratch on a 6502 — Part 1: 21 https://www.youtube.com/watch?v=LnzuMJLZRdU 22 - Obelisk webpage archive: 23 https://web.archive.org/web/20210803072420/http://www.obelisk.me.uk/6502/ 24 25 ## License 26 27 [MIT](https://opensource.org/licenses/MIT)