From 0f63282931ff76c0ac9c925538d7529798837cd8 Mon Sep 17 00:00:00 2001 From: Steven Hugg Date: Wed, 21 Aug 2019 22:55:32 -0400 Subject: [PATCH] working on new emulator framework --- index.html | 3 + src/emu.ts | 2 +- src/nemu/cpu/MOS6502.ts | 1949 ++++++++++++++++++++++++ src/nemu/machine/apple2.ts | 1103 ++++++++++++++ src/nemu/nemu.ts | 165 ++ src/platform/apple2.ts | 61 +- test/cli/6502/6502_functional_test.bin | Bin 0 -> 65536 bytes test/cli/6502/test6502sim.js | 68 + 8 files changed, 3349 insertions(+), 2 deletions(-) create mode 100644 src/nemu/cpu/MOS6502.ts create mode 100644 src/nemu/machine/apple2.ts create mode 100644 src/nemu/nemu.ts create mode 100644 test/cli/6502/6502_functional_test.bin create mode 100644 test/cli/6502/test6502sim.js diff --git a/index.html b/index.html index b633b7f7..10c0019c 100644 --- a/index.html +++ b/index.html @@ -542,6 +542,9 @@ function require(modname) { + + +