From 49e63ab329de324512658fb2d977ef1826b3fc39 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Thu, 24 Mar 2016 13:11:46 -0400 Subject: [PATCH] coco3: enable RTC code --- Kernel/platform-coco3/config.h | 1 + Kernel/platform-coco3/devices.c | 1 + 2 files changed, 2 insertions(+) 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(); } -- 2.34.1