- Mes informació quan arriba un opcode no vàlid

- Més informació respecte a la càrrega de cassette
This commit is contained in:
2024-12-04 22:19:46 +01:00
parent b1d04f21f7
commit cce38449a5
3 changed files with 79 additions and 76 deletions

View File

@@ -115,7 +115,7 @@ namespace zx_tape
current_pulse = 0;
pulse_level = 1;
current_section = PULSE_SYNC1;
printf("going to pulse_sync1...\n");
printf("going to pulse_sync1..%i.\n", current_block);
}
}
}
@@ -127,7 +127,7 @@ namespace zx_tape
pulse_pos -= PULSE_LEN_SYNC1;
pulse_level = 0;
current_section = PULSE_SYNC2;
printf("going to pulse_sync2...\n");
printf("going to pulse_sync2..%i.\n", current_block);
}
}
@@ -138,7 +138,7 @@ namespace zx_tape
pulse_pos -= PULSE_LEN_SYNC2;
pulse_level = 1;
current_section = PULSE_DATA;
printf("going to pulse_data...\n");
printf("going to pulse_data..%i.\n", current_block);
}
}
static int level[2] = {0, 0};
@@ -165,7 +165,7 @@ namespace zx_tape
{
block_pos = 0;
current_section = PULSE_SYNC3;
printf("going to pulse_sync3...\n");
printf("going to pulse_sync3..%i.\n", current_block);
}
}
}
@@ -200,7 +200,7 @@ namespace zx_tape
pulse_pos -= PULSE_LEN_SYNC3;
pulse_level = 0;
current_section = PULSE_WAIT;
printf("going to pulse_wait...\n");
printf("going to pulse_wait..%i.\n", current_block);
}
}
@@ -223,7 +223,7 @@ namespace zx_tape
}
else
{
zxscreen::fullrefresh();
//zxscreen::fullrefresh();
printf("going to pulse_pilot on block %i...\n", current_block);
}
}