more format

This commit is contained in:
abbie 2023-07-08 20:41:43 +01:00
parent a0e3d7508d
commit 4cdbbbaf94
Signed by: threeoh6000
GPG key ID: 801FE4AD456E922C

View file

@ -6,8 +6,8 @@ Open source bootloader and pre-boot firmware for ComputerCraft.
Pelican expects to be ran under [FeatherBIOS](https://git.colean.cc/canaryos/feather) and as a result requires the following functions to be present on top of the bare ComputerCraft functions left over by UnBIOS: Pelican expects to be ran under [FeatherBIOS](https://git.colean.cc/canaryos/feather) and as a result requires the following functions to be present on top of the bare ComputerCraft functions left over by UnBIOS:
* print() (and by extension write()) * `print()` (and by extension `write()`)
* read() (and by extension os.pullEvent()) * `read()` (and by extension `os.pullEvent()`)
* dofile() (and by extension loadfile() and a loadstring() and load() that act like Lua 5.2+) * `dofile()` (and by extension `loadfile()`)
FeatherBIOS generally loads into the bootloader/post-BIOS payload via `dofile(boot.lua)` and as a result, Pelican should be placed at `/boot.lua`. FeatherBIOS generally loads into the bootloader/post-BIOS payload via `dofile(boot.lua)` and as a result, Pelican should be placed at `/boot.lua`.