diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 17 |
1 files changed, 13 insertions, 4 deletions
@@ -18,10 +18,19 @@ </textarea> <button id='compile'>compile</button> <button id='tick'>tick</button> - <button id='run'>run</button> - <div id='datastack'></div> - <div id='callstack'></div> - <div id='wordlist'></div> + <button id='bench'>bench</button> + <fieldset> + <legend>stack</legend> + <ol id='stack'></ol> + </fieldset> + <fieldset> + <legend>call stack</legend> + <ol id='callstack'></ol> + </fieldset> + <fieldset> + <legend>word list</legend> + <div id='wordlist'></div> + </fieldset> <canvas id='arena' width='512' height='512'>no canvas!</canvas> <script src='./main.mjs' type='module'></script> </body> |
