Milestone! GHz reached! & Removing large files

This commit is contained in:
tudnai 2020-05-01 22:17:31 -07:00
parent 424a65e074
commit 54a02f3ea1

View File

@ -811,9 +811,9 @@ INLINE uint16_t memread16_high( uint16_t addr ) {
} }
INLINE uint16_t memread16( uint16_t addr ) { INLINE uint16_t memread16( uint16_t addr ) {
if (addr >= 0xC000) { // if (addr >= 0xC000) {
return memread16_high(addr); // return memread16_high(addr);
} // }
return memread16_low(addr); return memread16_low(addr);
} }
@ -886,7 +886,7 @@ INLINE uint8_t fetch() {
m6502.clktime++; m6502.clktime++;
} }
#endif #endif
return memread( m6502.PC++ ); return memread8_low( m6502.PC++ );
} }
/** /**