Compare commits

..

No commits in common. "d87e9e9f649f2ac06800f9fbec9342efae185317" and "f83bda47df71015591cb99afd32d475ef975139b" have entirely different histories.

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("APPLE-1");
woz_puts("GENUINE APPLE1");
}
else {
// Replica-1
ONE_TICK = 16667; // timer constant for 1/60 second calculated as 5000000/5/60
woz_puts("REPLICA-1");
ONE_TICK = 17045; // timer constant for 1/60 second calculated as 14318180/14/60
woz_puts("APPLE1 REPLICA-1");
}
woz_puts("\r\r");