pikuma_6502_nes/Makefile
Tyrel Souza e58a6330d9 clearmem
clears the mem and ppu stuff
2022-11-28 13:15:40 -05:00

19 lines
791 B
Makefile
Executable File

###############################################################################
# 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
###############################################################################
run:
fceux clearmem.nes