updated kernel and working on oc tty impl

This commit is contained in:
2026-08-23 21:51:19 -04:00
parent d4f74e950c
commit d70328c224
99 changed files with 1092 additions and 386 deletions
@@ -191,16 +191,14 @@ local function newtty(obj, id, ev)
write(content, obj)
end,
size=function()
local s={obj.getSize()}
return table.concat(s,";")
return obj.getSize()
end,
clear=function()
obj.clear()
obj.setCursorPos(1,1)
end,
gpos=function()
local s={obj.getCursorPos()}
return table.concat(s,";")
return obj.getCursorPos()
end,
spos=function(x,y)
return obj.setCursorPos(x,y)