mirror of
https://github.com/SmallPond/MIT6.828_OS.git
synced 2026-02-03 11:03:16 +08:00
9 lines
102 B
C
9 lines
102 B
C
struct rtcdate {
|
|
uint second;
|
|
uint minute;
|
|
uint hour;
|
|
uint day;
|
|
uint month;
|
|
uint year;
|
|
};
|