diff --git a/kernel/src/extra/cli.c b/kernel/src/extra/cli.c index 5b2c1fc8c..6309ef34a 100644 --- a/kernel/src/extra/cli.c +++ b/kernel/src/extra/cli.c @@ -575,13 +575,15 @@ uint32_t CLI_PLAIN(uint32_t argc, char** argv) { return 1; } - size_t address = htoi(argv[1] + 2); + size_t address = htoi(argv[1]); + + qemu_note("Address is: %x", address); FILE* file = fopen(argv[2], "rb"); size_t filesize = fsize(file); - qemu_log("FILE SIZE IS: %d", filesize); + qemu_note("File size is: %d", filesize); void* a = kmalloc_common(ALIGN(filesize, PAGE_SIZE), PAGE_SIZE); memset(a, 0, ALIGN(filesize, PAGE_SIZE)); diff --git a/kernel/src/fs/nvfs.c b/kernel/src/fs/nvfs.c index 5a5232501..57eb4cb7d 100644 --- a/kernel/src/fs/nvfs.c +++ b/kernel/src/fs/nvfs.c @@ -18,7 +18,7 @@ #include "fs/fsm.h" #include "lib/php/str_replace.h" -bool nvfs_debug = true; +bool nvfs_debug = false; NVFS_DECINFO* nvfs_decode(const char* Name) { NVFS_DECINFO* info = kcalloc(sizeof(NVFS_DECINFO), 1); diff --git a/ramdisk/mt b/ramdisk/mt deleted file mode 100755 index 4af30b505..000000000 Binary files a/ramdisk/mt and /dev/null differ diff --git a/ramdisk/zasm b/ramdisk/zasm deleted file mode 100755 index bb51a0d37..000000000 Binary files a/ramdisk/zasm and /dev/null differ