From d1dab01633ae3170ee1f4e0d710ea9e9fecc733d Mon Sep 17 00:00:00 2001 From: Ain <41307858+nero@users.noreply.github.com> Date: Sun, 29 Sep 2019 21:26:59 +0000 Subject: [PATCH] Rename rdos.sys to rdos.bin *.sys is meant for DOS-like driver binaries. I actually have a flat binary with a specific load offset. --- Makefile | 4 ++-- boot/fat.asm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0646a8b..79aac34 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ FLOPPY = 360 PROGRAMS = $(patsubst %.asm,%.com,$(wildcard programs/*.asm)) -DISTFILES = rdos.sys $(PROGRAMS) +DISTFILES = rdos.bin $(PROGRAMS) ROMS = QEMU_ARCH = $(shell uname -m) @@ -30,7 +30,7 @@ endif default: fdimage.img -rdos.sys: kernel/*.asm lib/*.asm +rdos.bin: kernel/*.asm lib/*.asm $(NASM) $(NASM_ARGS) -o $@ -I kernel kernel/main.asm debug.rom: debug/*.asm lib/*.asm diff --git a/boot/fat.asm b/boot/fat.asm index 6043a66..ff288f2 100644 --- a/boot/fat.asm +++ b/boot/fat.asm @@ -235,7 +235,7 @@ error: int 0x19 kernel_name: - db "RDOS SYS" + db "RDOS BIN" times (0x1FE - ($-$$)) db 0