Compare commits

..

No commits in common. "c3347fa18890ebaf2fb4aa88690fe3a1f20777d3" and "69666130da0e8efa1939fecdd24a0d84b3178b56" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View File

@ -2,8 +2,4 @@
rm -r target/*
mkdir target
lua luapreproc.lua module/init.lua target/init.lua
echo _OSVERSION=\"PsychOS 2.0a1-$(git rev-parse --short HEAD)\" > target/version.lua
cat target/version.lua target/init.lua > target/tinit.lua
mv target/tinit.lua target/init.lua
cp -r exec/ service/ lib/ target/
lua finddesc.lua $(find module/ -type f) $(find lib/ -type f) > apidoc.md

View File

@ -1,6 +1,6 @@
do
--#include "module/vt100.lua"
function vtemu(gpua,scra) -- creates a process to handle the GPU and screen address combination *gpua*/*scra*. Returns read, write and "close" functions.
function vtemu(gpua,scra)
local gpu = component.proxy(gpua)
gpu.bind(scra)
local write = vt100emu(gpu)