From 5a5718c3114d847203a2de87da6c6889157ba751 Mon Sep 17 00:00:00 2001 From: Daniel Loffgren Date: Wed, 16 Sep 2015 04:44:58 +0000 Subject: [PATCH] Settings the reset vector is unnecessary, as the woz monitor rom overlaps with the vector locatinos git-svn-id: svn+ssh://svn.phoenixbox.net/svn/apple1/trunk@21 64f78de7-aa59-e511-a0e8-0002a5492df0 --- apple1/main.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apple1/main.c b/apple1/main.c index 00c9ed3..66ea575 100644 --- a/apple1/main.c +++ b/apple1/main.c @@ -91,10 +91,6 @@ int main(int argc, const char * argv[]) //v6502_map(cpu->memory, start, ROM_SIZE, romMirrorCallback, NULL, NULL); } - // Set the reset vector - v6502_write(cpu->memory, v6502_memoryVectorResetLow, RESET_VECTOR & 0xFF); - v6502_write(cpu->memory, v6502_memoryVectorResetHigh, RESET_VECTOR >> 8); - // Attach PIA a1pia *pia = pia_create(cpu->memory);