1
0
mirror of https://github.com/kepler155c/opus synced 2025-02-06 04:00:03 +00:00
opus/sys/boot/tlco.boot

16 lines
266 B
Plaintext
Raw Normal View History

2016-12-11 14:24:52 -05:00
local pullEvent = os.pullEventRaw
local shutdown = os.shutdown
2017-10-11 22:39:04 -04:00
os.pullEventRaw = function()
2018-01-24 17:39:38 -05:00
error('')
2016-12-11 14:24:52 -05:00
end
os.shutdown = function()
2018-01-24 17:39:38 -05:00
os.pullEventRaw = pullEvent
os.shutdown = shutdown
2016-12-11 14:24:52 -05:00
2018-01-24 17:39:38 -05:00
os.run(getfenv(1), 'sys/boot/opus.boot')
2016-12-11 14:24:52 -05:00
end
os.queueEvent('modem_message')