Make hram a separate compilation unit

This commit is contained in:
Raymond Dodge 2024-01-08 19:13:20 -05:00 committed by Marcus Huderle
parent d1f4c7fab7
commit 8dccc7374b
2 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,7 @@
.SECONDARY:
ROM := pokepinball.gbc
OBJS := main.o wram.o sram.o
OBJS := main.o wram.o sram.o hram.o
ifeq (,$(shell which sha1sum))
SHA1 := shasum

View File

@ -1,4 +1,3 @@
INCLUDE "hram.asm"
INCLUDE "vram.asm"
INCLUDE "gbhw.asm"