15 lines
299 B
Python
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)
|