mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
f12e57b7c4
* progz * fixies * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "6c228fc53a" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "6c228fc53a" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * 3 * func_80238000_703AF0 * Force upgrades of requirements in Jenkinsfile * --amend * main_loop finished * PR comments
11 lines
349 B
Python
11 lines
349 B
Python
from util import compiler, log, options, palettes, symbols
|
|
|
|
|
|
def init(target_bytes: bytes):
|
|
symbols.spim_context.fillDefaultBannedSymbols()
|
|
|
|
if options.opts.libultra_symbols:
|
|
symbols.spim_context.globalSegment.fillLibultraSymbols()
|
|
if options.opts.hardware_regs:
|
|
symbols.spim_context.globalSegment.fillHardwareRegs(True)
|