Skip to content

Commit 14a32f8

Browse files
author
Junming Liu
committed
refine rtc.s
1. Add description of used register to remove TODO. 2. Refine all registers addr to HEX format.
1 parent dd48083 commit 14a32f8

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

rtc.S

+18-3
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,35 @@
11
/* https://github.com/cirosantilli/x86-bare-metal-examples#rct */
22

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+
*/
419
.equ RTCaddress, 0x70
520
.equ RTCdata, 0x71
621

722
#include "common.h"
823
BEGIN
924
update_in_progress:
10-
mov $10, %al
25+
mov $0x0A, %al
1126
out %al, $RTCaddress
1227
in $RTCdata, %al
1328
testb $0x80, %al
1429
jne update_in_progress
1530

1631
/* Second. */
17-
mov $0, %al
32+
mov $0x00, %al
1833
out %al, $RTCaddress
1934
in $RTCdata, %al
2035

0 commit comments

Comments
 (0)