mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-07 05:30:30 +00:00
Reenabled the fast-loading hack.
This commit is contained in:
parent
9b3d05e05f
commit
08a542a324
@ -100,7 +100,7 @@ int Machine::perform_machine_cycle(const CPU::Z80::MachineCycle &cycle) {
|
|||||||
set_interrupt_line(false);
|
set_interrupt_line(false);
|
||||||
|
|
||||||
// Check for use of the fast tape hack.
|
// Check for use of the fast tape hack.
|
||||||
/* if(address == tape_trap_address_) { // TODO: && fast_tape_hack_enabled_
|
if(address == tape_trap_address_) { // TODO: && fast_tape_hack_enabled_
|
||||||
int next_byte = parser_.get_next_byte(tape_player_.get_tape());
|
int next_byte = parser_.get_next_byte(tape_player_.get_tape());
|
||||||
if(next_byte != -1) {
|
if(next_byte != -1) {
|
||||||
uint16_t hl = get_value_of_register(CPU::Z80::Register::HL);
|
uint16_t hl = get_value_of_register(CPU::Z80::Register::HL);
|
||||||
@ -109,7 +109,7 @@ int Machine::perform_machine_cycle(const CPU::Z80::MachineCycle &cycle) {
|
|||||||
set_value_of_register(CPU::Z80::Register::ProgramCounter, tape_return_address_ - 1);
|
set_value_of_register(CPU::Z80::Register::ProgramCounter, tape_return_address_ - 1);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}*/
|
}
|
||||||
|
|
||||||
case CPU::Z80::BusOperation::Read:
|
case CPU::Z80::BusOperation::Read:
|
||||||
if(address < ram_base_) {
|
if(address < ram_base_) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user