[v0.0.9] set C0 code location to 0, fix optional version
This commit is contained in:
parent
28b19166d7
commit
0c722361e2
4 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = supSMSASM
|
name = supSMSASM
|
||||||
version = 0.0.8
|
version = 0.0.9
|
||||||
author = sup39
|
author = sup39
|
||||||
author_email = sms@sup39.dev
|
author_email = sms@sup39.dev
|
||||||
description = A tool to make Gecko code from ASM for SMS
|
description = A tool to make Gecko code from ASM for SMS
|
||||||
|
|
|
@ -204,7 +204,7 @@ def main():
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
fnIn = argv[1]
|
fnIn = argv[1]
|
||||||
verIn = argv[2]
|
verIn = argv[2] if len(argv) > 2 else 'JP'
|
||||||
if verIn.lower() == 'all':
|
if verIn.lower() == 'all':
|
||||||
ans = ''
|
ans = ''
|
||||||
indent = ' '
|
indent = ' '
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
"SMS__GMSE01" = 1;
|
"SMS__GMSE01" = 1;
|
||||||
"SMS__US" = 1;
|
"SMS__US" = 1;
|
||||||
"$r13" = 0x804141c0;
|
"$r13" = 0x804141c0;
|
||||||
|
"gpApplication" = 0x803E9700;
|
||||||
"TRK_MINNOW_DOLPHIN.TRK_memcpy" = 0x80003244;
|
"TRK_MINNOW_DOLPHIN.TRK_memcpy" = 0x80003244;
|
||||||
"TRK_MINNOW_DOLPHIN.TRK_memset" = 0x80003268;
|
"TRK_MINNOW_DOLPHIN.TRK_memset" = 0x80003268;
|
||||||
"TRK_MINNOW_DOLPHIN.__TRK_reset" = 0x800051cc;
|
"TRK_MINNOW_DOLPHIN.__TRK_reset" = 0x800051cc;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
SECTIONS {
|
SECTIONS {
|
||||||
. = DEFINED($$) ? $$ : 0x817f9800;
|
. = DEFINED($$) ? $$ : 0;
|
||||||
.text : ALIGN(4) { *(.text) }
|
.text : ALIGN(4) { *(.text) }
|
||||||
.rodata : ALIGN(4) { *(.rodata) }
|
.rodata : ALIGN(4) { *(.rodata) }
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue