Skip to content

Commit

Permalink
create new tools folder and move ulz source code there
Browse files Browse the repository at this point in the history
  • Loading branch information
richard42 committed Mar 26, 2020
1 parent 5c1067d commit 26f0744
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ adventureland.bin
adv_rom_loader.bin
mcsmp20r_final.bin
releases/*
ulz/ulz
tools/ulz
tools/a18
2 changes: 1 addition & 1 deletion build_ram.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
../../A18/a18 game_ram.asm -l adventureland.prn -o adventureland.hex -b adventureland.bin
./tools/a18 game_ram.asm -l adventureland.prn -o adventureland.hex -b adventureland.bin

6 changes: 3 additions & 3 deletions build_rom.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
import os
import sys

TOOLDIR = "../../"
TOOLDIR = "./tools"

if __name__ == "__main__":
# Initialize tool paths
a18Path = os.path.join(TOOLDIR, "A18", "a18")
ulzPath = os.path.join(TOOLDIR, "ulz", "ulz")
a18Path = os.path.join(TOOLDIR, "a18")
ulzPath = os.path.join(TOOLDIR, "ulz")
# Step 1: assemble game core
cmd = "%s game_rom_core.asm -l adventureland.prn -b adventureland.bin" % a18Path
print(cmd)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 26f0744

Please sign in to comment.