aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/cmos/rtc.h
diff options
context:
space:
mode:
authorMarvin Borner2020-04-18 00:07:37 +0200
committerMarvin Borner2020-04-18 00:07:37 +0200
commit8d78616a2b80c7625c1aa9ca4733e48a8bf8bf22 (patch)
tree894bddb357ca1976fcfd3b54d1e8fe48bbac569b /src/kernel/cmos/rtc.h
parent27c38d3f6e473d2bf7075fb364db148f22aca203 (diff)
Completely reworked ACPI tables
I'm too exhausted right now, but I rediscovered the memory mapping issue of my ACPI implementatio and need to fix it ASAP. Otherwise I won't be able to use any ACPI table without causing a page fault. I have no clue why exactly this is happening and the internet says that I shouldn't need to memory map them. Well, I'll look into it later.
Diffstat (limited to 'src/kernel/cmos/rtc.h')
-rw-r--r--src/kernel/cmos/rtc.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/kernel/cmos/rtc.h b/src/kernel/cmos/rtc.h
index ca80f4f..7604bb1 100644
--- a/src/kernel/cmos/rtc.h
+++ b/src/kernel/cmos/rtc.h
@@ -1,15 +1,17 @@
#ifndef MELVIX_RTC_H
#define MELVIX_RTC_H
-unsigned char second;
-unsigned char minute;
-unsigned char hour;
-unsigned char day;
-unsigned char month;
+#include <stdint.h>
+
+uint8_t second;
+uint8_t minute;
+uint8_t hour;
+uint8_t day;
+uint8_t month;
unsigned int year;
void read_rtc();
-void write_time();
+void rtc_print();
-#endif \ No newline at end of file
+#endif