mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
13 lines
No EOL
294 B
Python
13 lines
No EOL
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() |