diff --git a/EttinOS.svg b/EttinOS.svg new file mode 100644 index 0000000..fb75517 --- /dev/null +++ b/EttinOS.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/README.MD b/README.MD index a266a1f..d41173b 100644 Binary files a/README.MD and b/README.MD differ diff --git a/make.sh b/make.sh index 634034b..f232c3c 100755 --- a/make.sh +++ b/make.sh @@ -13,7 +13,7 @@ nasm SYSTEM.ASM -f bin -o ../bin/SYSTEM.BIN nasm ECHO.ASM -f bin -o ../bin/ECHO.BIN nasm HELLO.ASM -f bin -o ../bin/HELLO.BIN nasm LIST.ASM -f bin -o ../bin/LIST.BIN -nasm TYPE.ASM -f bin -o ../bin/TYPE.BIN +nasm PRINT.ASM -f bin -o ../bin/PRINT.BIN cd .. if [ "$1" = "-1440" ] @@ -35,7 +35,7 @@ mcopy -i EttinOS.img LICENSE.MD :: mcopy -i EttinOS.img bin/ECHO.BIN :: mcopy -i EttinOS.img bin/HELLO.BIN :: mcopy -i EttinOS.img bin/LIST.BIN :: -mcopy -i EttinOS.img bin/TYPE.BIN :: +mcopy -i EttinOS.img bin/PRINT.BIN :: mcopy -i EttinOS-src.img src/BOOT.ASM :: mcopy -i EttinOS-src.img src/SYSTEM.ASM :: @@ -48,4 +48,4 @@ mcopy -i EttinOS-src.img LICENSE.MD :: mcopy -i EttinOS-src.img src/ECHO.ASM :: mcopy -i EttinOS-src.img src/HELLO.ASM :: mcopy -i EttinOS-src.img src/LIST.ASM :: -mcopy -i EttinOS-src.img src/TYPE.ASM :: +mcopy -i EttinOS-src.img src/PRINT.ASM :: diff --git a/src/BOOT.ASM b/src/BOOT.ASM index afca993..f7a8820 100644 Binary files a/src/BOOT.ASM and b/src/BOOT.ASM differ diff --git a/src/ECHO.ASM b/src/ECHO.ASM index 784928c..6f5db7d 100644 Binary files a/src/ECHO.ASM and b/src/ECHO.ASM differ diff --git a/src/LIST.ASM b/src/LIST.ASM index 7cc20c5..ae63407 100644 Binary files a/src/LIST.ASM and b/src/LIST.ASM differ diff --git a/src/LOADF.INC b/src/LOADF.INC index 4186d26..39a2f69 100644 Binary files a/src/LOADF.INC and b/src/LOADF.INC differ diff --git a/src/TYPE.ASM b/src/PRINT.ASM similarity index 100% rename from src/TYPE.ASM rename to src/PRINT.ASM diff --git a/src/READSTR.INC b/src/READSTR.INC index f8391f5..d24f217 100644 Binary files a/src/READSTR.INC and b/src/READSTR.INC differ diff --git a/src/SYSTEM.ASM b/src/SYSTEM.ASM index 7ca17df..d1cb40d 100644 Binary files a/src/SYSTEM.ASM and b/src/SYSTEM.ASM differ