From: Brett Gordon Date: Thu, 24 Mar 2016 17:11:46 +0000 (-0400) Subject: coco3: enable RTC code X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=49e63ab329de324512658fb2d977ef1826b3fc39;p=FUZIX.git coco3: enable RTC code --- diff --git a/Kernel/platform-coco3/config.h b/Kernel/platform-coco3/config.h index d9108dce..c3489a7b 100644 --- a/Kernel/platform-coco3/config.h +++ b/Kernel/platform-coco3/config.h @@ -89,3 +89,4 @@ extern unsigned char vt_map( unsigned char c ); #undef CONFIG_COCOSDC /* Darren Atkinson's "CoCoSDC" cartridge */ #define CONFIG_IDE /* enable if IDE interface present */ +#define CONFIG_RTC /* enable RTC code */ diff --git a/Kernel/platform-coco3/devices.c b/Kernel/platform-coco3/devices.c index 5d47efd2..9def73fc 100644 --- a/Kernel/platform-coco3/devices.c +++ b/Kernel/platform-coco3/devices.c @@ -48,5 +48,6 @@ void device_init(void) devsdc_init( ); #endif dwtime_init( ); + inittod(); }