Remove Uneeded Files and Update Versioning Scheme

This commit is contained in:
Tyler 2025-04-05 02:08:55 -04:00
parent 5acc3262bd
commit 7df8c3f830
6 changed files with 2 additions and 63 deletions

1
.gitignore vendored
View File

@ -1,5 +1,4 @@
.vscode/
build/
toolchain/
bx_enh_dbg.ini
src/bootloader/stage2_old

View File

@ -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"

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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"