2022-01-30 00:43:56 -08:00
|
|
|
default:
|
|
|
|
just --list
|
|
|
|
|
2022-06-15 09:10:13 -07:00
|
|
|
# Run homebrew ROM using mesen-s
|
2022-06-13 18:02:47 -07:00
|
|
|
run-homebrew: homebrew-tutorial
|
|
|
|
mesen-s ./out/main.sfc
|
|
|
|
|
2022-06-15 09:10:13 -07:00
|
|
|
# Build homebrew ROM in ./out
|
2022-06-13 16:00:17 -07:00
|
|
|
homebrew-tutorial:
|
|
|
|
mkdir -p out
|
|
|
|
ca65 ./homebrew-tutorial/main.asm -o ./out/main.o -g
|
|
|
|
ld65 -C ./homebrew-tutorial/lorom.cfg -o ./out/main.sfc ./out/main.o
|
|
|
|
|
2022-01-30 00:43:56 -08:00
|
|
|
greenspace_smc:
|
2022-01-30 01:27:54 -08:00
|
|
|
just legacy/greenspace/greenspace_smc
|
2022-01-30 00:43:56 -08:00
|
|
|
|
2022-01-30 01:26:42 -08:00
|
|
|
test_gfx:
|
|
|
|
just legacy/test_gfx/test_gfx
|