Files
super6502/sw/kernel/devices/rtc.h
2023-11-19 22:11:29 -08:00

16 lines
237 B
C

#ifndef _RTC_H
#define _RTC_H
#include <stdint.h>
#define RTC_CMD_ADDR 0xeffe
#define RTC_DAT_ADDR 0xefff
/* initialize RTC with default values */
void init_rtc(void);
/* handle RTC interrupts */
void handle_rtc(void);
#endif