mirror of
https://github.com/zeldaret/mm.git
synced 2026-09-10 11:55:10 -04:00
Moved extract_rom into tools
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
.set noat
|
||||
.set noreorder
|
||||
.set gp=64
|
||||
.macro glabel label
|
||||
.global \label
|
||||
\label:
|
||||
.endm
|
||||
+2
-2
@@ -6,8 +6,8 @@ import subprocess
|
||||
import tempfile
|
||||
|
||||
dir_path = os.path.dirname(os.path.realpath(__file__))
|
||||
asm_processor = ['python3', os.path.join(dir_path, "tools/asm-processor/asm-processor.py")]
|
||||
prelude = os.path.join(dir_path, "include/prelude.inc")
|
||||
asm_processor = ['python3', os.path.join(dir_path, "asm-processor/asm-processor.py")]
|
||||
prelude = os.path.join(dir_path, "prelude.inc")
|
||||
|
||||
all_args = sys.argv[1:]
|
||||
sep1 = all_args.index('--')
|
||||
|
||||
Reference in New Issue
Block a user