mirror of
https://github.com/MutableLoss/6502SimDesktop.git
synced 2024-11-21 22:32:13 +00:00
Add div/default asm code
This commit is contained in:
parent
5b60c60479
commit
90a8026bc8
@ -5,8 +5,6 @@
|
|||||||
<title>Easy 6502 Desktop Simulator</title>
|
<title>Easy 6502 Desktop Simulator</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="banner"></div>
|
|
||||||
<div class="widget">
|
<div class="widget">
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<input type="button" value="Assemble" class="assembleButton" />
|
<input type="button" value="Assemble" class="assembleButton" />
|
||||||
@ -17,7 +15,14 @@
|
|||||||
<input type="button" value="Notes" class="notesButton" />
|
<input type="button" value="Notes" class="notesButton" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<textarea class="code"></textarea>
|
<textarea class="code">
|
||||||
|
LDA #$01
|
||||||
|
STA $0200
|
||||||
|
LDA #$05
|
||||||
|
STA $0201
|
||||||
|
LDA #$08
|
||||||
|
STA $0202
|
||||||
|
</textarea>
|
||||||
|
|
||||||
<canvas class="screen" width="160" height="160"></canvas>
|
<canvas class="screen" width="160" height="160"></canvas>
|
||||||
|
|
||||||
@ -42,6 +47,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="monitor"><pre><code></code></pre></div>
|
<div class="monitor"><pre><code></code></pre></div>
|
||||||
<div class="messages"><pre><code></code></pre></div>
|
<div class="messages"><pre><code></code></pre></div>
|
||||||
|
<div class="banner"></div>
|
||||||
|
|
||||||
<div class="notes" style="display: none">Notes:
|
<div class="notes" style="display: none">Notes:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user