1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-18 13:23:23 -07:00
mm/Lua/print.lua
2015-12-26 23:22:15 -08:00

35 lines
668 B
Lua

-- use with inject.lua on O EUDB MQ
require = require "depend"
require "boilerplate"
local buffer = 0x700070
local vfc = A(0x168960, 4)
-- $ tail -f oot\ debug.txt | iconv -f euc-jp
local f = io.open('oot debug.txt', 'w+b')
while version == "O EUDB MQ" do
local pos = buffer
local str = ''
local fmt = '%c'
while true do
local b = R1(pos)
pos = pos + 1
if b == 0 then
break
end
str = str..string.char(b)
end
f:write(str)
f:flush()
local old = vfc()
for i=1,30 do
emu.frameadvance()
local new = vfc()
if new ~= old then break end
end
end
f:close()