fix messages in viaclock

This commit is contained in:
nino-porcino 2022-06-04 11:54:13 +02:00
parent 884ad55c32
commit d87e9e9f64
1 changed files with 2 additions and 2 deletions

View File

@ -113,12 +113,12 @@ void detect_machine_type() {
if(*ptr1 == *ptr2) {
// genuine Apple1
ONE_TICK = 15996; // timer constant for 1/60 second calculated as 14318180/14*61/65/60
woz_puts("GENUINE APPLE1");
woz_puts("APPLE-1");
}
else {
// Replica-1
ONE_TICK = 16667; // timer constant for 1/60 second calculated as 5000000/5/60
woz_puts("APPLE1 REPLICA-1");
woz_puts("REPLICA-1");
}
woz_puts("\r\r");