Compare commits
2 Commits
efdb01328f
...
026f2524e6
Author | SHA1 | Date | |
---|---|---|---|
026f2524e6 | |||
e20123b527 |
@ -34,7 +34,7 @@ end
|
|||||||
|
|
||||||
function print(...) -- Writes each argument to the default output stream, separated by space.
|
function print(...) -- Writes each argument to the default output stream, separated by space.
|
||||||
for k,v in ipairs({...}) do
|
for k,v in ipairs({...}) do
|
||||||
io.write(tostring(v).."\t")
|
io.write((k>1 and "\t" or "")..tostring(v))
|
||||||
end
|
end
|
||||||
io.write("\n")
|
io.write("\n")
|
||||||
end
|
end
|
||||||
|
@ -18,7 +18,7 @@ function fsmanager.start()
|
|||||||
run = true
|
run = true
|
||||||
return os.spawn(function()
|
return os.spawn(function()
|
||||||
for addr, _ in component.list("filesystem") do
|
for addr, _ in component.list("filesystem") do
|
||||||
mount(addr)
|
fsmanager.mount(addr)
|
||||||
end
|
end
|
||||||
while run do
|
while run do
|
||||||
local tE = {coroutine.yield()}
|
local tE = {coroutine.yield()}
|
||||||
|
Loading…
Reference in New Issue
Block a user