Until the map issue is fixed, it's still not necessary to load more than one copy of the ROM, since the FFxx range can operate standalone

git-svn-id: svn+ssh://svn.phoenixbox.net/svn/apple1/trunk@57 64f78de7-aa59-e511-a0e8-0002a5492df0
This commit is contained in:
Daniel Loffgren 2015-09-23 07:29:18 +00:00
parent 8060ca4e44
commit e6bc51edfc
1 changed files with 2 additions and 6 deletions

View File

@ -83,12 +83,8 @@ int main(int argc, const char * argv[])
// Load Woz Monitor
printf("Loading ROM...\n");
for (uint16_t start = ROM_START;
start < v6502_memoryStartCeiling && start >= ROM_START;
start += ROM_SIZE + 1) {
v6502_loadFileAtAddress(cpu->memory, "apple1.rom", start);
//v6502_map(cpu->memory, start, ROM_SIZE, romMirrorCallback, NULL, NULL);
}
v6502_loadFileAtAddress(cpu->memory, "apple1.rom", RESET_VECTOR);
//v6502_map(cpu->memory, start, ROM_SIZE, romMirrorCallback, NULL, NULL);
// Attach PIA
printf("Initializing PIA...\n");