supSMS-GeckoCode/drawText/test/make.py
2024-02-07 20:09:53 +09:00

15 lines
299 B
Python

from supSMSGecko import make_xml, symbols, Button as B
'''
Note: drawText.s is modified from compiled drawText.c file
'''
def main(g, ver):
S = symbols[ver]
g.C2(
addr = S['drawWater'] - 0x30,
input_path = 'test.s',
extra_ld_input = ['drawText = 0x817f0238;'],
)
make_xml(main)