From 4887a37a6866d4081884ffb2db7c95fabc8aed16 Mon Sep 17 00:00:00 2001 From: Yufan You Date: Sat, 9 Mar 2024 22:00:47 +0800 Subject: [PATCH] Fix SBI_SET_TIMER with latest rustsbi --- source/0setup-devel-env.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/0setup-devel-env.rst b/source/0setup-devel-env.rst index b00ef98..613d679 100644 --- a/source/0setup-devel-env.rst +++ b/source/0setup-devel-env.rst @@ -136,7 +136,7 @@ Qemu 模拟器安装 如果使用 Qemu8,你需要: * 替换 ``bootloader/rustsbi-qemu.bin`` 为最新版 `在这里下载 `_ 后更名为 ``bootloader/rustsbi-qemu.bin`` 并替换同名文件即可 - * 将 ``os/src/sbi.rs`` 中的常量 ``SBI_SHUTDOWN`` 的值替换为 ``const SBI_SHUTDOWN: usize = 0x53525354;`` + * 将 ``os/src/sbi.rs`` 中的常量 ``SBI_SHUTDOWN`` 的值替换为 ``const SBI_SHUTDOWN: usize = 0x53525354;``,``SBI_SET_TIMER`` 的值替换为 ``const SBI_SET_TIMER: usize = 0x54494D45;`` .. attention::