1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-23 03:29:04 +00:00

Ensures non-breakage of Qt interface.

This commit is contained in:
Thomas Harte 2021-01-31 21:28:55 -05:00
parent 274b3c7d24
commit 53514c7fdc
2 changed files with 2 additions and 2 deletions

View File

@ -356,7 +356,7 @@ template <bool has_scsi_bus> class ConcreteMachine:
break;
case 0xfc03:
if(has_scsi_bus && (address&0x00f0) == 0x0040) {
printf("SCSI IRQ: %s %02x\n", isReadOperation(operation) ? "->" : "<-", *value);
// TODO: SCSI IRQ. Once I'm clear on the use.
}
break;
case 0xfc01:

View File

@ -1163,7 +1163,7 @@ void MainWindow::start_electron() {
auto target = std::make_unique<Target>();
target->has_dfs = ui->electronDFSCheckBox->isChecked();
target->has_adfs = ui->electronADFSCheckBox->isChecked();
target->has_pres_adfs = ui->electronADFSCheckBox->isChecked();
target->has_ap6_rom = ui->electronAP6CheckBox->isChecked();
target->has_sideways_ram = ui->electronSidewaysRAMCheckBox->isChecked();