File tree 1 file changed +18
-3
lines changed
1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change 1
1
/* https://github.com/cirosantilli/x86-bare-metal-examples#rct */
2
2
3
- /* TODO what do those numbers mean? Where is this all documented? */
3
+ /*
4
+ * Reference: https://wiki.osdev.org/CMOS
5
+ Register Contents Range
6
+ 0x00 Seconds 0–59
7
+ 0x02 Minutes 0–59
8
+ 0x04 Hours 0–23 in 24-hour mode,
9
+ 1–12 in 12-hour mode, highest bit set if pm
10
+ 0x07 Day of Month 1–31
11
+ 0x08 Month 1–12
12
+ 0x09 Year 0–99
13
+
14
+ 0x0A Status Register A
15
+ RTC has an "Update in progress" flag (bit 7 of Status Register A).
16
+ To read the time and date properly you have to wait until
17
+ the "Update in progress" flag goes from "set" to "clear".
18
+ */
4
19
.equ RTCaddress, 0x70
5
20
.equ RTCdata, 0x71
6
21
7
22
#include "common.h"
8
23
BEGIN
9
24
update_in_progress:
10
- mov $10 , %al
25
+ mov $0x0A , %al
11
26
out %al , $RTCaddress
12
27
in $RTCdata, %al
13
28
testb $0x80 , %al
14
29
jne update_in_progress
15
30
16
31
/* Second. */
17
- mov $0 , %al
32
+ mov $0x00 , %al
18
33
out %al , $RTCaddress
19
34
in $RTCdata, %al
20
35
You can’t perform that action at this time.
0 commit comments