From a0c57e59a13332c388f57c1b0e132ceb309bc3cc Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Wed, 19 Apr 2017 22:52:17 +1000 Subject: [PATCH] Some README formatting changes --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9cb104d..5be0bc2 100644 --- a/README.md +++ b/README.md @@ -5,21 +5,21 @@ #### s(name,function,environment) Spawns a process from `function` under the name `name`, with the environment table specified in `environment`. Environment doesn't really have much use right now. -#### l() +#### `l() ` Returns the last event. Doesn't actually work right now. -#### h(...) +#### `h(...)` Pushes an event to the queue, with whatever data you specify. Generally used for IPC. ### Module APIs #### library/print.lua These functions should be display device indepentent. -##### print(...) +##### `print(...)` Displays its arguments on the display device as a string, with a newline. -##### write(...) +##### `write(...)` Displays its arguments on the display device as a string, without a newline #### drivers/keyboard.lua This is a device-specific driver. -##### readln() +##### `readln()` Reads a line of input from the keyboard. #### library/net.lua Note: Settings have to be set in the kernel module, at the line @@ -29,6 +29,6 @@ tM,nP,nID = {}, 4096, 1 Where 4096 is the port and 1 is the device ID. Device ID can be any data type, port must be a number. Network messages can be read from `_G.ev`, they have the type `net_msg` -##### ns(id,po,msg) +##### `ns(id,po,msg)` Sends network message `msg` to device `id` on port `po`