abcbus.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <link rel="stylesheet" href="max80.css" />
  5. <title class="abcbus">MAX80: ABC Bus</title>
  6. <script src="max80.js"></script>
  7. </head>
  8. <body>
  9. <x-inc src="head.html"></x-inc>
  10. <h1 class="abcbus">ABC Bus</h1>
  11. <div class="wip"><p>This section is a work in progress...</p></div>
  12. <form id="abcconfig" class="setconfig" action="sys/setconfig" method="post"
  13. onsubmit="uploadform()" data-ref="10" data-ref-url="abcbus.html">
  14. <fieldset class="abchost">
  15. <legend>Host system</legend>
  16. <div class="radio">
  17. <b>Host system type</b>
  18. <div>
  19. <label class="auto">
  20. <input type="radio" name="abc.hosttype" value="0" />
  21. <span>Autodetect</span>
  22. </label>
  23. <label class="abc80">
  24. <input type="radio" name="abc.hosttype" value="1" />
  25. <span>ABC80</span>
  26. </label>
  27. <label class="abc80-4680">
  28. <input type="radio" name="abc.hosttype" value="2" />
  29. <span>ABC80/4680 (expansion box)</span>
  30. </label>
  31. <label class="abc800">
  32. <input type="radio" name="abc.hosttype" value="3" />
  33. <span>ABC800C/M</span>
  34. </label>
  35. <label class="abc802">
  36. <input type="radio" name="abc.hosttype" value="4" />
  37. <span>ABC802/806</span>
  38. </label>
  39. </div>
  40. </div>
  41. <p class="help">Autodetection can fail in some type
  42. of expansion boxes, possibly depending on jumpering.</p>
  43. </fieldset>
  44. <fieldset class="pun80">
  45. <legend>Network</legend>
  46. <label class="serv">
  47. <b>ABC (PUN80) network server</b>
  48. <input type="text" class="host" name="abc.netserv.addr" />
  49. <span class="sep">:</span>
  50. <input type="text" class="port" name="abc.netserv.port" placeholder="4680" />
  51. </label>
  52. <p class="help">The network server software is integrated
  53. with <a href="https://www.abc80.org/pub/abc80sim/">abc80sim</a>
  54. version 3.7.5 or later.</p>
  55. </fieldset>
  56. <button class="submit" type="submit" disabled>Update configuration</button>
  57. </form>
  58. <script>loadform('abcconfig','sys/getconfig');</script>
  59. </body>
  60. </html>