Operating system for OpenComputers
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
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