1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Removed one piece of unnecessary logging.

This commit is contained in:
Thomas Harte 2017-05-06 22:22:03 -04:00
parent 1f56e85f6d
commit 0771363f3b

View File

@ -127,9 +127,9 @@ unsigned int Machine::perform_bus_operation(CPU6502::BusOperation operation, uin
// CPU or 6560 costs.
if(use_fast_tape_hack_ && tape_->has_tape() && operation == CPU6502::BusOperation::ReadOpcode) {
if(address == 0xf7b2) {
printf("Find header");
printf("Find header\n");
} else if(address == 0xf90b) {
printf("Tape receive");
printf("Tape receive\n");
}
}
} else {
@ -338,7 +338,6 @@ uint8_t UserPortVIA::get_port_input(Port port) {
void UserPortVIA::set_control_line_output(Port port, Line line, bool value) {
if(port == Port::A && line == Line::Two) {
tape_->set_motor_control(!value);
printf("Tape motor: %d\n", value ? 1 : 0);
}
}