1
0
Fork 0
mirror of https://github.com/raxracks/6502.git synced 2024-12-02 00:11:10 +13:00
6502/Makefile

8 lines
181 B
Makefile
Raw Normal View History

2024-01-27 00:39:48 +13:00
emulator: emulator.c
gcc emulator.c -o emulator -g -Iinclude
hello: hello.asm
ca65 hello.asm -o hello.o
ld65 hello.o -o hello -C config.cfg
run: hello emulator
./emulator hello