Operating system for OpenComputers
You can not select more than 25 topics 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