I posted 2 images so you know, what I'm talking about.
This is my build code, I'm using Windows 10
Code: Select all
DEL /F Build\Image.img
DEL /F Bin\BootLoader.bin
DEL /F Bin\Kernel.bin
imdisk -D -m P:
nasm -f bin -o Bin/BootLoader.bin Dev/BootLoader.asm
nasm -f bin -o Bin/Kernel.bin Dev/Kernel.asm
nasm -f bin -o Bin/TestApp.bin Dev/RandomApp.asm
imdisk -a -f Build/Image.img -s 1440K -m P: -p "/FS:FAT /Y"
imdisk -D -m P:
dd if="Bin/BootLoader.bin" of="Build/Image.img" bs=512 count=1
imdisk -a -f Build/Image.img -m P:
copy Bin\Kernel.bin P:\
copy Bin\TestApp.bin P:\
copy Tische.txt P:\
imdisk -D -m P:
pause