mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-02 07:46:01 +00:00
Start banned symbol range at 0x10000000
This commit is contained in:
parent
6eefe9482f
commit
fa51a54cd7
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ def main():
|
||||||
context = spimdisasm.common.Context()
|
context = spimdisasm.common.Context()
|
||||||
context.parseArgs(args)
|
context.parseArgs(args)
|
||||||
context.changeGlobalSegmentRanges(0x00000000, 0x01000000, 0x8000000, 0x81000000)
|
context.changeGlobalSegmentRanges(0x00000000, 0x01000000, 0x8000000, 0x81000000)
|
||||||
context.addBannedSymbolRange(0x80000000, 0x80000400)
|
context.addBannedSymbolRange(0x10000000, 0x80000400)
|
||||||
|
|
||||||
spimdisasm.mips.InstructionConfig.parseArgs(args)
|
spimdisasm.mips.InstructionConfig.parseArgs(args)
|
||||||
spimdisasm.common.GlobalConfig.parseArgs(args)
|
spimdisasm.common.GlobalConfig.parseArgs(args)
|
||||||
|
|
Loading…
Reference in a new issue