Difference between revisions of "Bios.lua"

From ComputerCraft Wiki
Jump to: navigation, search
m
Line 1: Line 1:
 
{{stub}}
 
{{stub}}
  
bios.lua is the main component in a computer (computers, pocket computers, turtles). If you were to look at the .jar file, you would see bios.lua is in the same directory as rom (The root directory) but doesn't show up when used with ls, dir or list. It is a file that is run on boot of the computer and you can't edit it internally but can edit it externally with programs like [https://notepad-plus-plus.org/ Notepad++]. The functions, however, can be overwritten with simple Lua code.
+
bios.lua is the main component in a computer ([[computer]]s, [[pocket computer]]s, [[turtle]]s). If you were to look at the .jar file, you would see bios.lua is in the same directory as rom (The root directory) but doesn't show up when used with ls, dir or list. It is a file that is run on boot of the computer and you can't edit it internally but can edit it externally with programs like [https://notepad-plus-plus.org/ Notepad++]. The functions, however, can be overwritten with simple Lua code.

Revision as of 02:58, 20 August 2015

This page is a stub.
Please help us by expanding it.

bios.lua is the main component in a computer (computers, pocket computers, turtles). If you were to look at the .jar file, you would see bios.lua is in the same directory as rom (The root directory) but doesn't show up when used with ls, dir or list. It is a file that is run on boot of the computer and you can't edit it internally but can edit it externally with programs like Notepad++. The functions, however, can be overwritten with simple Lua code.