diff --git a/ch3-coop/os/src/config.rs b/ch3-coop/os/src/config.rs new file mode 100644 index 0000000..23e601c --- /dev/null +++ b/ch3-coop/os/src/config.rs @@ -0,0 +1,2 @@ +pub const APP_BASE_ADDRESS: usize = 0x80400000; // 载入的app的起始的地址 +pub const APP_SIZE_LIMIT: usize = 0x20000; // app的最大的二进制文件能够使用的大小 \ No newline at end of file