1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-28 09:54:49 +00:00

Immediate fixes: TSX is seemingly TZX 1.21; the tape motor control works the other way around.

Input is not yet being recognised.
This commit is contained in:
Thomas Harte 2017-12-19 22:17:42 -05:00
parent db6d9b59d0
commit 0bb24075b6
2 changed files with 4 additions and 4 deletions

View File

@ -82,7 +82,7 @@ class AYPortHandler: public GI::AY38910::PortHandler {
// Bit 6: keyboard switch (not universal)
// Bit 7: tape input
return 0x7f | (tape_player_.get_input() ? 0x80 : 0x00);
return 0x7f | (tape_player_.get_input() ? 0x00 : 0x80);
}
return 0xff;
}
@ -340,7 +340,7 @@ class ConcreteMachine:
// b5 audio output
// b4: cassette motor relay
tape_player_.set_motor_control(!!(value & 0x10));
tape_player_.set_motor_control(!(value & 0x10));
// b7: keyboard click
bool new_audio_level = !!(value & 0x80);

View File

@ -28,7 +28,7 @@ TZX::TZX(const char *file_name) :
uint8_t minor_version = file_.get8();
// Reject if an incompatible version
if(major_version != 1 || minor_version > 20) throw ErrorNotTZX;
if(major_version != 1 || minor_version > 21) throw ErrorNotTZX;
virtual_reset();
}
@ -53,7 +53,7 @@ void TZX::get_next_pulses() {
return;
}
// printf("TZX %ld\n", ftell(file_));
printf("TZX %02x\n", chunk_id);
switch(chunk_id) {
case 0x10: get_standard_speed_data_block(); break;
case 0x11: get_turbo_speed_data_block(); break;