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.
This commit is contained in:
Nero 2019-09-29 21:26:59 +00:00
parent a0f2a71066
commit d1dab01633
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -235,7 +235,7 @@ error:
int 0x19
kernel_name:
db "RDOS SYS"
db "RDOS BIN"
times (0x1FE - ($-$$)) db 0