Compare commits

...

3 Commits

Author SHA1 Message Date
nino-porcino d87e9e9f64 fix messages in viaclock 2022-06-04 11:54:13 +02:00
nino-porcino 884ad55c32 upload PIA docs 2022-06-04 11:40:33 +02:00
nino-porcino 497ed0f201 fix time constant for Replica-1 2022-06-04 11:40:25 +02:00
2 changed files with 3 additions and 3 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 = 17045; // timer constant for 1/60 second calculated as 14318180/14/60
woz_puts("APPLE1 REPLICA-1");
ONE_TICK = 16667; // timer constant for 1/60 second calculated as 5000000/5/60
woz_puts("REPLICA-1");
}
woz_puts("\r\r");