Files
libretro/bios/Arcade/MAME/plugins/cheat/xml_to_json.lua
2026-03-17 11:53:42 +01:00

12 lines
263 B
Lua

xml = require("cheat_xml")
json = dofile("../json/init.lua")
function readAll(file)
local f = io.open(file, "rb")
local content = f:read("*all")
f:close()
return content
end
print(json.stringify(xml.conv_cheat(readAll(arg[1])), {indent = true}))