begin the C++ rewrite

This commit is contained in:
2026-03-08 17:23:13 +01:00
parent 3d14448de7
commit f71784909b
4 changed files with 101 additions and 10 deletions

View File

@@ -1,10 +1,10 @@
# emu
Emulators written in C
Emulators written in C and C++
* `chip8.c` - [CHIP8](https://en.wikipedia.org/wiki/CHIP-8)
* `mos6502.c` - [MOS 6502](https://en.wikipedia.org/wiki/MOS_Technology_6502)
* `riscv64.c & riscv64_dis.h` - [RV64IM instruction set](https://en.wikipedia.org/wiki/RISC-V) (more extensions coming soon-ish)
* `riscv64.cc` - [RV64IM instruction set](https://en.wikipedia.org/wiki/RISC-V) (more extensions coming soon-ish)
## Building
```