esop

Essential Stack-Operated Phone (concept)
git clone git://git.luxferre.top/esop.git
Log | Files | Refs | README | LICENSE

esop-web.html (779B)


      1 <!DOCTYPE html>
      2 <html>
      3   <head>
      4     <meta charset="utf-8">
      5     <title>ESOP Web ref test</title>
      6     <meta name=viewport content="width=device-width">
      7 <style>
      8 html, body {
      9   margin: 0;
     10   padding: 0;
     11   text-align: center;
     12 }
     13 #C {
     14   width: 240px;
     15   height: auto;
     16   image-rendering: -moz-crisp-edges;
     17   image-rendering: -webkit-crisp-edges;
     18   image-rendering: pixelated;
     19   image-rendering: crisp-edges;
     20 }
     21 </style>
     22   </head>
     23   <body>
     24     <h1>Essential Stack-Operated Phone</h1>
     25     <canvas id=C width=84 height=48></canvas>
     26     <div>
     27       <input type=file id=appselect accept=".eso"><br>
     28       <button type=button id=apprun>Run!</button>
     29     </div>
     30     <script src=uxncore.js></script>
     31     <script src=esop-ext.js></script>
     32     <script src=esop-web-app.js></script>
     33   </body>
     34 </html>