abcbus.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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="auto" />
  21. <span>Autodetect</span>
  22. </label>
  23. <label class="abc80">
  24. <input type="radio" name="abc.hosttype" value="abc80" />
  25. <span>ABC80</span>
  26. </label>
  27. <label class="abc800">
  28. <input type="radio" name="abc.hosttype" value="abc800" />
  29. <span>ABC800</span>
  30. </label>
  31. </div>
  32. </div>
  33. <p class="help">Autodetection can fail in some type
  34. of expansion boxes, possibly depending on jumpering.</p>
  35. </fieldset>
  36. <fieldset class="pun80">
  37. <legend>Network</legend>
  38. <label class="serv">
  39. <b>ABC (PUN80) network server</b>
  40. <input type="text" class="host" name="abc.netserv.addr" />
  41. <span class="sep">:</span>
  42. <input type="text" class="port" name="abc.netserv.port" placeholder="4680" />
  43. </label>
  44. <p class="help">The network server software is integrated
  45. with <a href="https://www.abc80.org/pub/abc80sim/">abc80sim</a>
  46. version 3.7.0 or later.</p>
  47. </fieldset>
  48. <button class="submit" type="submit" disabled>Update configuration</button>
  49. </form>
  50. <script>loadform('abcconfig','sys/getconfig');</script>
  51. </body>
  52. </html>