Operating system for OpenComputers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
265B

  1. xpcall(function()
  2. io.input("/dev/tty0")
  3. io.output("/dev/tty0")
  4. os.setenv("PWD","/boot")
  5. io.write("PsychOS v2.0a1 - ")
  6. print(tostring(math.floor(computer.totalMemory()/1024)).."K RAM")
  7. os.spawnfile("/boot/exec/shell.lua")
  8. end,function(e) dprint(e) end,"init test")