Difference between revisions of "Bios.lua"

From ComputerCraft Wiki
Jump to: navigation, search
(Created page with "{{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 dire...")
 
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 externally with things 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 (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.

Revision as of 08:13, 31 July 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.