diff options
| -rw-r--r-- | kernel/kernel/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/kernel/main.cpp b/kernel/kernel/main.cpp index 2da18e0b..fef35ed9 100644 --- a/kernel/kernel/main.cpp +++ b/kernel/kernel/main.cpp @@ -109,7 +109,7 @@ auto run_demo() -> void // 10) do memory dump to show that the write to the device file had an effect // 11) dmp the module before create new directory and file - // -exec monitor memsave 0xffffffff80259000 0xA00000 dump_before.bin + // -exec monitor memsave 0xffffffff8025b000 0xA00000 dump_before.bin // 12) create new folder and file auto creation_result = kapi::filesystem::mkdir("/test_files").and_then([] { @@ -139,7 +139,7 @@ auto run_demo() -> void kstd::println("--> written {} bytes to /test_files/test_file.txt: {::#04x}", bytes_written, test_write_buffer); // 14) dmp the module after create new directory and file - // -exec monitor memsave 0xffffffff80259000 0xA00000 dump_after.bin + // -exec monitor memsave 0xffffffff8025b000 0xA00000 dump_after.bin } auto main() -> int |
