mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
11 lines
252 B
Lua
11 lines
252 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}))
|