]> localhost Git - WindEmu.git/commitdiff
rtc tick interval def
authorGeorge Wright <gw@gwright.org.uk>
Sat, 7 Dec 2024 21:12:44 +0000 (13:12 -0800)
committerGeorge Wright <gw@gwright.org.uk>
Sat, 7 Dec 2024 21:12:44 +0000 (13:12 -0800)
WindCore/sa1100_defs.h

index bf5c0dfa23ce91bdd5d14fe679f70c3fba5c1a0a..5fcc1e4608efb7889d0bf148c22d4d288cd7ef72 100644 (file)
@@ -7,6 +7,7 @@ namespace SA1100 {
 enum {
        CLOCK_SPEED = 190*1000*1000, // 190MHz
        TICKS_3_6864_MHZ = CLOCK_SPEED / 3686400,
+       TICKS_1_HZ = CLOCK_SPEED / 64, // run the RTC a little faster just for testing
        TICK_INTERVAL = CLOCK_SPEED / 64
 };