Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/support/drivers/boot.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/support/drivers/boot.lua')
-rw-r--r--lib/support/drivers/boot.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/support/drivers/boot.lua b/lib/support/drivers/boot.lua
deleted file mode 100644
index 2471ab9..0000000
--- a/lib/support/drivers/boot.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-local device = _G
-local RESET = string.char(0xFF)
-
-api={}
-api.reset = {}
-api.reset.parameters = {} --no parameters
-api.reset.returns = {} --no returns
-api.reset.call = function ()
- device:send(RESET)
-end
-