diff --git a/.gitignore b/.gitignore index 615d0f9..eea8b18 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ .vscode/ build/ toolchain/ -bx_enh_dbg.ini src/bootloader/stage2_old \ No newline at end of file diff --git a/bochs_config b/bochs_config deleted file mode 100644 index 58f1736..0000000 --- a/bochs_config +++ /dev/null @@ -1,7 +0,0 @@ -megs: 128 -romimage: file=/usr/share/bochs/BIOS-bochs-legacy, address=0xffff0000 -vgaromimage: file=/usr/share/bochs/VGABIOS-lgpl-latest -floppya: 1_44=build/main_floppy.img, status=inserted -boot: floppy -mouse: enabled=0 -display_library: x, options="gui_debug" diff --git a/bx_enh_dbg.ini b/bx_enh_dbg.ini deleted file mode 100644 index 2cff01a..0000000 --- a/bx_enh_dbg.ini +++ /dev/null @@ -1,26 +0,0 @@ -# bx_enh_dbg_ini -SeeReg[0] = TRUE -SeeReg[1] = TRUE -SeeReg[2] = TRUE -SeeReg[3] = TRUE -SeeReg[4] = FALSE -SeeReg[5] = FALSE -SeeReg[6] = FALSE -SeeReg[7] = FALSE -SingleCPU = FALSE -ShowIOWindows = TRUE -ShowButtons = TRUE -SeeRegColors = TRUE -ignoreNxtT = TRUE -ignSSDisasm = TRUE -UprCase = 0 -DumpInAsciiMode = 3 -isLittleEndian = TRUE -DefaultAsmLines = 512 -DumpWSIndex = 0 -DockOrder = 0x123 -ListWidthPix[0] = 486 -ListWidthPix[1] = 667 -ListWidthPix[2] = 763 -MainWindow = 0, 0, 1280, 500 -FontName = Normal diff --git a/debug.sh b/debug.sh deleted file mode 100755 index 8963282..0000000 --- a/debug.sh +++ /dev/null @@ -1,27 +0,0 @@ -echo ------------ -echo COMPILING OS -echo ------------ - -sudo make - -echo --------- -echo Finished! -echo --------- -read -p "Do you want to Start Bochs? (Y/n) " yn - -case $yn in - y ) - echo ------------- - echo STARTING Bochs - echo ------------- - sudo bochs -f bochs_config - echo -------- - echo Finshed! - echo -------- - - ;; - n ) echo exiting...; - exit;; - * ) echo invalid response; - exit 1;; -esac diff --git a/src/kernel/main.c b/src/kernel/main.c index c30554f..d251a81 100644 --- a/src/kernel/main.c +++ b/src/kernel/main.c @@ -28,7 +28,7 @@ void __attribute__((section(".entry"))) start(BootParams* bootParams) { // print logo clrscr(); printf("%s", LOGO); - printf("The Nano OS %s\n-------------------------------------\n", VERSION); + printf("The Nano OS %s\n-------------------------------------\n", VERSION); printf("Loaded Kernel!\n"); // init HAL diff --git a/src/libs/version.h b/src/libs/version.h index 1e3bd4b..33ca9e8 100644 --- a/src/libs/version.h +++ b/src/libs/version.h @@ -6,5 +6,5 @@ #pragma once #define LOGO " _ _____ _ __________________\n / | / / | / | / / _/_ __/ ____/\n / |/ / /| | / |/ // / / / / __/ \n / /| / ___ |/ /| // / / / / /___ \n/_/ |_/_/ |_/_/ |_/___/ /_/ /_____/ \n" -#define VERSION "v0.0.1" +#define VERSION "RD-00001" #define BOOTLOGO " _ ______ ____ ____ ______\n / | / / __ )/ __ \\/ __ /_ __/\n / |/ / __ / / / / / / // / \n / /| / /_/ / /_/ / /_/ // / \n/_/ |_/_____/\\____/\\____//_/ \n" \ No newline at end of file