1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-06-28 12:57:12 -07:00
mm/Lua/boilerplate.lua

131 lines
2.7 KiB
Lua
Raw Normal View History

-- boilerplate convenience functions
-- TODO: respect little endian consoles too
2015-05-01 11:29:43 -07:00
require "extra"
local mm = mainmemory
2015-03-26 07:27:36 -07:00
local m = memory
m.usememorydomain("ROM")
R1 = mm.readbyte
R2 = mm.read_u16_be
R3 = mm.read_u24_be
R4 = mm.read_u32_be
RF = function(addr) return mm.readfloat(addr, true) end
W1 = mm.writebyte
W2 = mm.write_u16_be
W3 = mm.write_u24_be
W4 = mm.write_u32_be
WF = function(addr, value) mm.writefloat(addr, value, true) end
2015-03-26 07:27:36 -07:00
X1 = m.readbyte
X2 = m.read_u16_be
X3 = m.read_u24_be
X4 = m.read_u32_be
XF = function(addr) return m.readfloat(addr, true) end
local readers = {
[1] = R1,
[2] = R2,
[3] = R3,
[4] = R4,
['f'] = RF,
}
local writers = {
[1] = W1,
[2] = W2,
[3] = W3,
[4] = W4,
['f'] = WF,
}
local mt = {
__call = function(self, value)
return value and self.write(self.addr, value) or self.read(self.addr)
end
}
function A(addr, atype)
-- TODO: inherit type, read, and write fields from appropriate class
return setmetatable({
addr=addr,
type=atype,
read=readers[atype],
write=writers[atype]
}, mt)
end
2015-05-01 08:40:32 -07:00
Class = function(inherit)
local class = {}
local mt_obj = {__index = class}
local mt_class = {
2015-05-01 08:40:32 -07:00
__call = function(self, ...)
local obj = setmetatable({}, mt_obj)
2015-05-01 08:40:32 -07:00
obj:init(...)
return obj
end,
__index = inherit,
}
return setmetatable(class, mt_class)
end
function getindex(obj)
local gm = getmetatable(obj)
if not gm then return end
return gm.__index
2015-04-25 23:54:04 -07:00
end
2015-03-26 07:27:36 -07:00
function printf(fmt, ...)
print(fmt:format(...))
end
function is_ptr(ptr)
return bit.band(0xFF800000, ptr) == 0x80000000
end
function deref(ptr)
return is_ptr(ptr) and ptr - 0x80000000
end
2015-03-26 07:27:36 -07:00
function asciize(bytes)
local str = ""
local seq = false
for i, v in ipairs(bytes) do
local c = type(v) == 'number' and v or tonumber(v, 16)
if c == 9 or c == 10 or c == 13 or (c >= 32 and c < 127) then
str = str..string.char(c)
seq = false
elseif seq == false then
str = str..' '
seq = true
end
end
return str
end
2015-05-25 22:17:43 -07:00
function hex(i)
-- convenience function for use in console
printf("%08X", i)
end
--[[
-- now we can just write:
handle = A(0x123456, 1)
print(handle()) -- get 1 byte at address
handle(0xFF) -- set 1 byte at address
-- or just:
A(0x123456, 1)(0xFF) -- set address value
-- and taking advantage of A returning a table and not just a function:
A(handle.addr + 1, handle.type)(0x00) -- set the byte after our address
-- this doesn't limit us to just the type we initially specified. eg:
A(handle.addr, 2)(0x1234) -- set 2 bytes as opposed to our original 1
--]]
return A