sPhone/src/bin/halt.lua
2016-07-01 12:30:07 +02:00

11 lines
245 B
Lua

term.setBackgroundColor(colors.black)
term.setTextColor(colors.white)
term.setCursorBlink(true)
print("System halted")
function _G.os.pullEventRaw()
while true do
coroutine.yield("haltSystem")
end
end
_G.os.pullEvent = os.pullEventRaw