feo3boy 0.1.0

Emulator core for the gameboy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
TARGETS := $(patsubst %.asm,%.bin,$(wildcard *.asm))

FULL_ROMS := testcart.gb

.PHONY: all

all: $(TARGETS) $(FULL_ROMS)

%.bin: %.asm
	rgbasm $< -o - | rgblink -w -o $@ -

bios.bin: bios.asm
	rgbasm $< -o - | rgblink -w -o - - | head -c 256 > $@

%.gb: %.bin
	cp $< $@
	rgbfix -p0 -v $@