diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-01-16 18:31:12 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-01-16 18:31:12 -0800 |
commit | 6070c23e5e1c60d3bb169e43bddfa59b1d322427 (patch) | |
tree | 9a70e378c33c15e4779cf94abda8f37c35a5d1da /html/050_write.subx.html | |
parent | 5a6601aba973ba1d1ef30b7b64438c25623b89c5 (diff) | |
download | mu-6070c23e5e1c60d3bb169e43bddfa59b1d322427.tar.gz |
5897 - rename comparison instructions
Signed and unsigned don't quite capture the essence of what the different combinations of x86 flags are doing for SubX. The crucial distinction is that one set of comparison operators is for integers and the second is for addresses.
Diffstat (limited to 'html/050_write.subx.html')
-rw-r--r-- | html/050_write.subx.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/050_write.subx.html b/html/050_write.subx.html index 7a3bdae8..2369ce10 100644 --- a/html/050_write.subx.html +++ b/html/050_write.subx.html @@ -93,7 +93,7 @@ if ('onhashchange' in window) { <span id="L34" class="LineNr">34 </span> cd/syscall 0x80/imm8 <span id="L35" class="LineNr">35 </span> <span class="subxComment"># if (eax < 0) abort</span> <span id="L36" class="LineNr">36 </span> 3d/compare-eax-with 0/imm32 -<span id="L37" class="LineNr">37 </span> 0f 8c/jump-if-lesser $_write:abort/disp32 +<span id="L37" class="LineNr">37 </span> 0f 8c/jump-if-< $_write:abort/disp32 <span id="L38" class="LineNr">38 </span><span class="Constant">$_write:end</span>: <span id="L39" class="LineNr">39 </span> <span class="subxS1Comment"># . restore registers</span> <span id="L40" class="LineNr">40 </span> 5b/pop-to-ebx |