1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-25 06:33:22 +00:00
opus/sys/boot/tlco.boot
2018-01-24 17:39:38 -05:00

16 lines
266 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')