Initial commit, adds the Z80 emulator from https://github.com/nickd4/preForth.git...
authorNick Downing <nick@ndcode.org>
Fri, 1 Jul 2022 09:02:22 +0000 (19:02 +1000)
committerNick Downing <nick@ndcode.org>
Fri, 1 Jul 2022 09:47:37 +0000 (19:47 +1000)
commitf177d84a38cc60c76004660d3c5d8eb66409814d
treea1988439c344feb5305ace08ea98ae895f3c354d
Initial commit, adds the Z80 emulator from https://github.com/nickd4/preForth.git based on the submodule https://github.com/nickd4/z80.git (originally from superzazu github), assembler from https://github.com/nickd4/asxv5pxx.git (originally from Alan R. Baldwin), and 6502 disassembler from my Apple II disassembler project (will convert to Z80)
13 files changed:
.gitignore [new file with mode: 0644]
.gitmodules [new file with mode: 0644]
Makefile [new file with mode: 0644]
asxv5pxx [new submodule]
doc/PacmanEmulation.pdf [new file with mode: 0644]
emu_z80/Makefile [new file with mode: 0644]
emu_z80/annotate_trace.py [new file with mode: 0755]
emu_z80/emu_z80.c [new file with mode: 0644]
emu_z80/test.asm [new file with mode: 0644]
emu_z80/z80 [new submodule]
orig/Makefile [new file with mode: 0644]
pacman/Makefile [new file with mode: 0644]
utils/disasm.py [new file with mode: 0755]