2022-11-28 18:15:40 +00:00
|
|
|
###############################################################################
|
|
|
|
# Rule to assemble and link all assembly files
|
|
|
|
###############################################################################
|
|
|
|
build:
|
|
|
|
ca65 clearmem.asm -o clearmem.o
|
|
|
|
ld65 -C nes.cfg clearmem.o -o clearmem.nes
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Rule to remove all object (.o) files and cartridge (.nes) files
|
|
|
|
###############################################################################
|
|
|
|
clean:
|
|
|
|
rm *.o *.nes
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Rule to run the final cartridge .nes file in the FCEUX emulator
|
|
|
|
###############################################################################
|
2024-04-25 17:43:20 +00:00
|
|
|
run: build
|
2022-11-28 18:15:40 +00:00
|
|
|
fceux clearmem.nes
|