mirror of
https://github.com/farisawan-2000/kirby64.git
synced 2024-11-23 13:20:03 +00:00
10 lines
160 B
Python
10 lines
160 B
Python
import sys
|
|
|
|
|
|
bank = sys.argv[1]
|
|
ins = sys.argv[2]
|
|
|
|
print("#include \"bank_header.ld.in\"")
|
|
|
|
for i in range(int(ins) + 1):
|
|
print("GEO(%d, %d)" % (int(bank), i)) |