mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 11:49:24 +00:00
13 lines
294 B
Python
13 lines
294 B
Python
|
outFile = open("output.cfg", "w+")
|
||
|
inFile = open("../../../docs/notes/out.csv")
|
||
|
lines = inFile.readlines()
|
||
|
|
||
|
|
||
|
for line in lines:
|
||
|
name = line.split(',')[1]
|
||
|
vramAddress = line.split(',')[2]
|
||
|
|
||
|
if (name.startswith("ovl_")):
|
||
|
outFile.write(name + " " + vramAddress)
|
||
|
|
||
|
outFile.close()
|