Operating system for OpenComputers
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
242B

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