swissChili | e392aeb | 2020-08-10 15:52:10 -0700 | [diff] [blame^] | 1 | <html> |
| 2 | <head> |
| 3 | <meta name="viewport" content="width=device-width"> |
| 4 | <link rel="stylesheet" |
| 5 | href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.1/styles/default.min.css"> |
| 6 | <link rel="stylesheet" href="styles.css"> |
| 7 | <title>Home</title> |
| 8 | </head> |
| 9 | <body> |
| 10 | <main class="split container"> |
| 11 | <div class="sidebar"> |
| 12 | <h2><a href="/">6502</a></h2> |
| 13 | |
| 14 | <p> |
| 15 | 6502 Toolchain written by <a href="https://github.com/swissChili">swissChili</a> |
| 16 | </p> |
| 17 | |
| 18 | <ul> |
| 19 | <li><a href="https://github.com/swissChili/6502">Git</a></li> |
| 20 | <li><a href="/usage.html">Basic usage</a></li> |
| 21 | <li><a href="/examples.html">Example programs</a></li> |
| 22 | <li><a href="/building.html">Building from source</a></li> |
| 23 | </ul> |
| 24 | </div> |
| 25 | <div class="body"> |
| 26 | <h1> 6502 Toolchain</h1> |
| 27 | <center> |
| 28 | <video controls="true"> |
| 29 | <source src="demo.webm" type="video/webm"> |
| 30 | </video> |
| 31 | </center> |
| 32 | <br> |
| 33 | This project aims to create a fast, powerful, and easy to use toolchain for writing, debugging, |
| 34 | and running programs for the 6502 processor. It features a graphical and CLI debugger, disassembler, |
| 35 | and emulator. |
| 36 | <br> |
| 37 | <h2> Features</h2><h3> 8 bit color</h3> |
| 38 | That's 16 times more colors than <a href="http://6502asm.com/" target="_blank">the competition</a>! |
| 39 | <h3> Graphical debugger</h3> |
| 40 | Easily step through, run, and debug your programs using a fast graphical debugger. A traditional |
| 41 | CLI debugger is also available. |
| 42 | <h3> Fully multithreaded</h3> |
| 43 | The graphical debugger, cli debugger, and screen are all fully asynchronous. That means your |
| 44 | debugger stays fast, even when the emulator is running at full capacity. |
| 45 | It will soon be possible to even debug an already running instance of the emulator! |
| 46 | <h3> <i>Fast</i></h3> |
| 47 | This emulator is incredibly fast. So fast that programs written for other emulators don't work |
| 48 | properly half the time because of how fast it is! At some point I will add an option to slow |
| 49 | the emulator down so it is comparable to other emulators. |
| 50 | <br> |
| 51 | <br> |
| 52 | <br> |
| 53 | So what are you waiting for? Download the emulator now, or build it from source. |
| 54 | </div> |
| 55 | </main> |
| 56 | |
| 57 | <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.1/highlight.min.js"></script> |
| 58 | <script> |
| 59 | document.addEventListener('DOMContentLoaded', (event) => { |
| 60 | document.querySelectorAll('pre code').forEach((block) => { |
| 61 | hljs.highlightBlock(block); |
| 62 | }); |
| 63 | }); |
| 64 | </script> |
| 65 | </body> |
| 66 | </html> |