Advertisement
Guest User

Untitled

a guest
Mar 27th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. {
  2. components =
  3. {
  4. -- all componets first have
  5. -- "type": component type name
  6. -- "address": optional guid address. If nil a random address is generated
  7. {"screen", "67c66973-51ff-4aec-29cd-baabf2fbe346"},
  8. -- palette, monochrome color
  9. {"gpu", nil, 0x00af00},
  10. -- bios size, data size, label
  11. {"eeprom", nil, 4096, 256, "EEPROM"},
  12. -- total memory (in bytes)
  13. -- T1 : 196608
  14. -- T1.5: 262144
  15. -- T2 : 393216
  16. -- T2.5: 524288
  17. -- T3 : 786432
  18. -- T3.5: 1048576
  19. {"computer", nil, 1048576},
  20. -- filesystem
  21. -- 1. source: uri for readonly loot, nil/false for hdd, and true for tmpfs
  22. -- 2. label
  23. {"filesystem", "system/loot/s3ix", "DildOS"},
  24. {"filesystem", nil, true, "tmpfs"},
  25. {"filesystem"},
  26. -- attached screen address
  27. {"keyboard", nil, "67c66973-51ff-4aec-29cd-baabf2fbe346"},
  28. -- system port: all modems on the same system port will act as if on the same network (port 56k in honor of 56k modems)
  29. -- max packet size, if nil defaults to 8192
  30. -- max arguments, if nil defaults to 8
  31. {"modem", nil, 56000, 8192, 8},
  32. -- tcp enabled: default true
  33. -- http enabled: default true
  34. {"internet",nil,true,true},
  35. },
  36. system =
  37. {
  38. timeout = math.huge, -- defaults to 5
  39. allowGC = false, -- defaults to false
  40. allowBytecode = false, -- defaults to false
  41. maxTcpConnections = 4, --defaults to 4
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement