2
Fork 0

added dome and loader

This commit is contained in:
Willem 2018-12-25 00:50:41 +01:00
parent eaf2415a63
commit 95503dd119
7 changed files with 12105 additions and 0 deletions

20
src/bios/0module.mk Normal file
View file

@ -0,0 +1,20 @@
BIOS_NAME := bios
BIOS_SRC := $(PATH_SRC)/$(BIOS_NAME)
BIOS_BIN := $(PATH_BIN)/$(BIOS_NAME)
BIOS_HEX := $(BIOS_BIN)/$(BIOS_NAME).hex
BIOS_DAT := $(BIOS_BIN)/$(BIOS_NAME).dat
BIOS_RELS := $(BIOS_BIN)/$(BIOS_NAME).rel
BIOS_CODE := $(BIOS_SRC)/$(BIOS_NAME).asm
$(BIOS_BIN):
$(call mod_mkdir,$(BIOS_BIN))
$(BIOS_BIN)/%.rel: $(BIOS_SRC)/%.asm | $(BIOS_BIN)
$(call mod_compile_asm,$@,$<)
$(BIOS_HEX): $(BIOS_RELS)
$(call mod_link_asm_dos,$(BIOS_HEX),$(BIOS_RELS))
$(BIOS_DAT): $(BIOS_HEX)
$(call mod_hex2dat,$(BIOS_HEX),$(BIOS_DAT))

1697
src/bios/bios.asm Normal file

File diff suppressed because it is too large Load diff