1
0
mirror of https://github.com/kepler155c/opus synced 2025-01-13 09:00:27 +00:00
opus/sys/boot/tlco.boot
kepler155c@gmail.com 1c1eb9b782 transition to kernel
2018-01-20 07:18:13 -05:00

16 lines
270 B
Clojure

local pullEvent = os.pullEventRaw
local shutdown = os.shutdown
os.pullEventRaw = function()
error('')
end
os.shutdown = function()
os.pullEventRaw = pullEvent
os.shutdown = shutdown
os.run(getfenv(1), 'sys/boot/opus.boot')
end
os.queueEvent('modem_message')