1
1
miroir de https://git.shadowkat.net/izaya/OC-PsychOS2.git synchronisé 2024-09-28 15:12:45 -04:00
OC-PsychOS2/service/tape-iofs.lua

9 lignes
242 B
Lua
Brut Vue normale Historique

local counter = 0
for addr in component.list("tape_drive") do
iofs.register("tape"..tonumber(counter),function()
local tape = component.proxy(addr)
return tape.read, tape.write, function() end, tape.seek
end)
counter = counter + 1
end