mirror of
https://github.com/kepler155c/opus
synced 2024-11-04 16:06:16 +00:00
16 lines
266 B
Clojure
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')
|