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
186B

  1. function component.get(addr, ctype)
  2. for c in component.list(ctype, true) do
  3. if c:sub(1, addr:len()) == addr then
  4. return c
  5. end
  6. end
  7. return nil, "no such component"
  8. end