Completely changed how XnoeOS boots, organised the code somewhat, renamed kernel32 to kernel, now uses the 9 sectors after the boot sector to store a 32 bit stage2 loader. No longer spends unnecessary time in real mode. Updated atapio to properly account for the reserved sector count.

This commit is contained in:
2021-09-25 16:31:19 +01:00
parent d617de6a0c
commit c235befa43
13 changed files with 101 additions and 703 deletions
+14 -4
View File
@@ -1,15 +1,16 @@
CFLAGS = -m32 -mgeneral-regs-only -nostdlib -fno-builtin -fno-exceptions -fno-leading-underscore -fno-pie -fno-stack-protector -Wno-pointer-to-int-cast
LDFLAGS =
DISK_IMG_FILES = kernel.bin boot32.bin kernel32.bin
KERNEL32_OBJS = screenstuff.o io.o idt.o keyboard.o strings.o atapio.o kernel32_strap.o kernel32.o
DISK_IMG_FILES = kernel.bin
KERNEL32_OBJS = screenstuff.o io.o idt.o keyboard.o strings.o atapio.o c_code_entry.o kernel.o
run: disk.img
qemu-system-x86_64 disk.img
disk.img: clean boot.sector $(DISK_IMG_FILES)
disk.img: clean boot.sector boot.stage2 $(DISK_IMG_FILES)
dd if=/dev/zero of=disk.img count=43 bs=100k
dd if=boot.sector of=disk.img conv=notrunc
dd obs=512 seek=1 if=boot.stage2 of=disk.img conv=notrunc
mount disk.img img.d
cp *.bin img.d/
cp hello.txt img.d/
@@ -22,14 +23,23 @@ clean:
boot.sector: boot.asm
nasm $< -o $@
boot.stage2: boot_stage2.ld boot.stage2.o
ld $(LDFLAGS) -T $< boot.stage2.o
boot.stage2.o: src/boot_stage2/main.c io.o atapio.o strings.o c_code_entry.o screenstuff.o
gcc $(CFLAGS) -o $@ -c $<
%.bin: %.asm
nasm $< -o $@
kernel32.bin: kernel32.ld $(KERNEL32_OBJS)
kernel.bin: kernel.ld $(KERNEL32_OBJS)
ld $(LDFLAGS) -T $< $(KERNEL32_OBJS)
%.o: src/kernel/%.asm
nasm -felf32 $< -o $@
%.o: src/%.asm
nasm -felf32 $< -o $@
%.o: src/kernel/%.c
gcc $(CFLAGS) -o $@ -c $<