mirror of
https://github.com/zeldaret/oot
synced 2026-05-29 08:43:02 -04: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() |