diff options
Diffstat (limited to 'html/subx/ex3.subx.html')
-rw-r--r-- | html/subx/ex3.subx.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/html/subx/ex3.subx.html b/html/subx/ex3.subx.html index c3dddcfb..56cde00c 100644 --- a/html/subx/ex3.subx.html +++ b/html/subx/ex3.subx.html @@ -71,18 +71,18 @@ if ('onhashchange' in window) { <span id="L16" class="LineNr">16 </span> <span class="Comment"># counter: ECX = 1</span> <span id="L17" class="LineNr">17 </span> b9/copy 1/imm32 <span class="Comment"># copy 1 to ECX</span> <span id="L18" class="LineNr">18 </span> -<span id="L19" class="LineNr">19 </span>loop: +<span id="L19" class="LineNr">19 </span>$loop: <span id="L20" class="LineNr">20 </span> <span class="Comment"># while (counter <= 10)</span> <span id="L21" class="LineNr">21 </span> 81 7/subop/compare 3/mod/direct 1/rm32/ecx 0xa/imm32 <span class="Comment"># compare ECX, 10/imm</span> -<span id="L22" class="LineNr">22 </span> 7f/jump-if exit/disp8 <span class="Comment"># jump-if-greater exit</span> +<span id="L22" class="LineNr">22 </span> 7f/jump-if $exit/disp8 <span class="Comment"># jump-if-greater $exit</span> <span id="L23" class="LineNr">23 </span> <span class="Comment"># result += counter</span> <span id="L24" class="LineNr">24 </span> 01/add 3/mod/direct 3/rm32/ebx 1/r32/ecx <span class="Comment"># add ECX to EBX</span> <span id="L25" class="LineNr">25 </span> <span class="Comment"># ++counter</span> <span id="L26" class="LineNr">26 </span> 81 0/subop/add 3/mod/direct 1/rm32/ecx 1/imm32 <span class="Comment"># add 1 to ECX</span> <span id="L27" class="LineNr">27 </span> <span class="Comment"># loop</span> -<span id="L28" class="LineNr">28 </span> eb/jump loop/disp8 <span class="Comment"># jump loop</span> +<span id="L28" class="LineNr">28 </span> eb/jump $loop/disp8 <span class="Comment"># jump $loop</span> <span id="L29" class="LineNr">29 </span> -<span id="L30" class="LineNr">30 </span>exit: +<span id="L30" class="LineNr">30 </span>$exit: <span id="L31" class="LineNr">31 </span> <span class="Comment"># exit(EBX)</span> <span id="L32" class="LineNr">32 </span> b8/copy 1/imm32 <span class="Comment"># copy 1 to EAX</span> <span id="L33" class="LineNr">33 </span> cd/syscall 0x80/imm8 <span class="Comment"># int 80h</span> |