Compare commits
2 Commits
42494142bb
...
3cc1287dc4
Author | SHA1 | Date | |
---|---|---|---|
3cc1287dc4
|
|||
fbd75700d5
|
41
splubp.p8
41
splubp.p8
@@ -138,7 +138,9 @@ function splubp:wnx(...)
|
||||
end
|
||||
|
||||
function splubp:emit_item(obj, filename)
|
||||
debug_last_emit = obj -- global debug
|
||||
if DEBUG then
|
||||
--[[global]] splubp_last_emit = obj
|
||||
end
|
||||
filename = filename or obj._file
|
||||
obj._addr = self.ptr
|
||||
self:write_s(filename)
|
||||
@@ -195,6 +197,26 @@ function splubp:write_shr(n)
|
||||
self:wnx(n)
|
||||
end
|
||||
|
||||
function splubp:write_a(tbl)
|
||||
if (DEBUG) assert(#tbl <= 255, "'a' can't write array of length "..#tbl)
|
||||
self:write_c(#tbl)
|
||||
local rpt = self.cri
|
||||
for item in all(tbl) do
|
||||
self.cri = rpt
|
||||
self:wnx(item)
|
||||
end
|
||||
end
|
||||
|
||||
function splubp:write_t(tbl)
|
||||
if DEBUG then
|
||||
local want_len = self.row[self.cri]
|
||||
assert(#tbl == want_len, "'t' wants "..tostr(want_len).." items, but got "..#tbl..": "..tostr(tbl))
|
||||
end
|
||||
for i=1,self:op() do
|
||||
self:wnx(tbl[i])
|
||||
end
|
||||
end
|
||||
|
||||
-->8
|
||||
-- loader
|
||||
|
||||
@@ -217,3 +239,20 @@ function splubp:shr()
|
||||
local amt = self:op()
|
||||
return self:rnx() >>> amt
|
||||
end
|
||||
|
||||
function splubp:a()
|
||||
local ret,rpt = {},self.cri
|
||||
for i = 1,self:c() do
|
||||
self.cri=rpt
|
||||
add(ret, self:rnx())
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
function splubp:t()
|
||||
local ret = {}
|
||||
for i=1,self:op() do
|
||||
add(ret, self:rnx())
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
Reference in New Issue
Block a user