11 lines
333 B
Lua
11 lines
333 B
Lua
-- WTF: What the fuck is this for?? Why does it print the computer library???
|
|
-- TODO: Integrate this into lsdrv.
|
|
local computer = require("computer")
|
|
|
|
if type(computer)~="table" then
|
|
return print("\x1b[91mComputer library returned '"..type(computer).."' type\x1b[0m")
|
|
end
|
|
|
|
local address = computer.getBootAddress()
|
|
print(address)
|