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
This commit is contained in:
Daniel Loffgren 2015-09-16 04:44:58 +00:00
parent 67467a0839
commit 5a5718c311
1 changed files with 0 additions and 4 deletions

View File

@ -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);