You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
420 B
18 lines
420 B
default:
|
|
just --list
|
|
|
|
# Run homebrew ROM using mesen-s
|
|
run-homebrew: homebrew-tutorial
|
|
mesen-s ./out/main.sfc
|
|
|
|
# Build homebrew ROM in ./out
|
|
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
|
|
|
|
greenspace_smc:
|
|
just legacy/greenspace/greenspace_smc
|
|
|
|
test_gfx:
|
|
just legacy/test_gfx/test_gfx
|
|
|