From d87e9e9f649f2ac06800f9fbec9342efae185317 Mon Sep 17 00:00:00 2001 From: nino-porcino Date: Sat, 4 Jun 2022 11:54:13 +0200 Subject: [PATCH] fix messages in viaclock --- demos/viatimer/viaclock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/viatimer/viaclock.c b/demos/viatimer/viaclock.c index 771c448..5fda38f 100644 --- a/demos/viatimer/viaclock.c +++ b/demos/viatimer/viaclock.c @@ -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");