mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 03:32:32 +00:00
Simplified decoding logic.
This commit is contained in:
parent
d8e3103a2b
commit
9b3d05e05f
@ -64,11 +64,8 @@ int Machine::perform_machine_cycle(const CPU::Z80::MachineCycle &cycle) {
|
||||
set_vsync(false);
|
||||
line_counter_ = 0;
|
||||
|
||||
switch(address & 7) {
|
||||
default: break;
|
||||
case 0x5: nmi_is_enabled_ = false; break;
|
||||
case 0x6: nmi_is_enabled_ = is_zx81_; break;
|
||||
}
|
||||
if(!(address & 2)) nmi_is_enabled_ = false;
|
||||
if(!(address & 1)) nmi_is_enabled_ = is_zx81_;
|
||||
break;
|
||||
|
||||
case CPU::Z80::BusOperation::Input: {
|
||||
@ -103,7 +100,7 @@ int Machine::perform_machine_cycle(const CPU::Z80::MachineCycle &cycle) {
|
||||
set_interrupt_line(false);
|
||||
|
||||
// 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());
|
||||
if(next_byte != -1) {
|
||||
uint16_t hl = get_value_of_register(CPU::Z80::Register::HL);
|
||||
@ -112,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);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
case CPU::Z80::BusOperation::Read:
|
||||
if(address < ram_base_) {
|
||||
|
Loading…
Reference in New Issue
Block a user