From 915d40c7384cfdf58f1bb30f120793c47bccac10 Mon Sep 17 00:00:00 2001 From: Xubiod Date: Tue, 21 Jan 2025 09:01:57 -0500 Subject: [PATCH] add readme --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..43fdda4 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# 6502-experiment + +An experimental 6502 and 6502-compatible emulator that was made as a personal +challenge. + +Tests are compared with [visual6502](http://visual6502.org/) results with the same +machine code as an attempt to be accurate. + +## Segments + +* [cpu](./cpu/) - The main part of the emulation. Throughly documented. +* [assembler](./assembler/) - A basic assembler, mainly for making tests easier. +* [mm](./mm/) - An incomplete part for memory managers. Are not implemented. \ No newline at end of file