> compile NEMU

221220000 张三
Linux zzy 5.15.146.1-microsoft-standard-WSL2 #1 SMP Thu Jan 11 04:09:03 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
 12:43:15 up 2 days,  2:57,  1 user,  load average: 0.94, 0.59, 0.45
This commit is contained in:
tracer-ics2023
2024-09-14 12:43:15 +08:00
committed by zzy
parent 0b7209eb9f
commit 525b358534
2 changed files with 3 additions and 3 deletions

View File

@ -23,8 +23,8 @@ static void rtc_io_handler(uint32_t offset, int len, bool is_write) {
assert(offset == 0 || offset == 4);
if (!is_write && offset == 4) {
uint64_t us = get_time();
rtc_port_base[0] = (uint32_t)us;
rtc_port_base[1] = us >> 32;
((volatile uint32_t*)rtc_port_base)[0] = (uint32_t)us;
((volatile uint32_t*)rtc_port_base)[1] = us >> 32;
}
}