1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-20 19:06:32 -04:00

made the version thingo print a line this is important

This commit is contained in:
XeonSquared 2019-11-06 14:31:28 +11:00
parent ff321804ee
commit 1c416be625

View File

@ -6,7 +6,7 @@ for k,v in pairs(fs.list("/dev/")) do
if v:sub(1,3) == "tty" then if v:sub(1,3) == "tty" then
dprint(tostring(io.input("/dev/"..v))) dprint(tostring(io.input("/dev/"..v)))
dprint(tostring(io.output("/dev/"..v))) dprint(tostring(io.output("/dev/"..v)))
io.write(_OSVERSION.." - "..tostring(math.floor(computer.totalMemory()/1024)).."K RAM") print(_OSVERSION.." - "..tostring(math.floor(computer.totalMemory()/1024)).."K RAM")
os.spawnfile("/boot/exec/shell.lua") os.spawnfile("/boot/exec/shell.lua")
end end
end end