Lay out skeletons for FCB handling

This commit is contained in:
Nero 2020-10-11 21:33:01 +00:00
parent 31c6ef5876
commit 4e779c5a22
5 changed files with 93 additions and 147 deletions

View file

@ -6,10 +6,11 @@ QEMU = qemu-system-i386
QEMU_ARGS = $(addprefix --option-rom ,$(ROMS))
VERSION = $(shell git log -1 --format=%cd --date=format:%Y%m%d)
LABEL = RDOS $(VERSION)
PRODUCT = rdos
LABEL = $(PRODUCT) $(VERSION)
NASM = nasm
NASM_ARGS = -s -Ilib -DVERSION=$(VERSION)
NASM_ARGS = -s -Ilib -DPRODUCT=$(PRODUCT) -DVERSION=$(VERSION)
KVM = $(shell test -w /dev/kvm && echo 1)