Files
Halyde/halyde/apps/maindrv.lua
T
2025-08-17 16:44:40 +03:00

9 lines
219 B
Lua

local computer = import("computer")
if type(computer)~="table" then
return print("\x1b[91mComputer library returned '"..type(computer).."' type\x1b[39m")
end
local address = computer.getBootAddress()
print(address)