diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-01-27 00:39:46 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-01-27 00:39:46 -0800 |
commit | 2104d1a75b76dbffc0b15a96c98d94e7a16594e8 (patch) | |
tree | 2a839b86e76431a9bbe4bf155f7411171a26d7f8 /html/apps/factorial3.subx.html | |
parent | 71eb22a5bf94f5fa0a3c95212450e3c6a1a6a990 (diff) | |
download | mu-2104d1a75b76dbffc0b15a96c98d94e7a16594e8.tar.gz |
5925
Diffstat (limited to 'html/apps/factorial3.subx.html')
-rw-r--r-- | html/apps/factorial3.subx.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/apps/factorial3.subx.html b/html/apps/factorial3.subx.html index 7b7cefe3..7ad4a9fd 100644 --- a/html/apps/factorial3.subx.html +++ b/html/apps/factorial3.subx.html @@ -108,7 +108,7 @@ if ('onhashchange' in window) { <span id="L49" class="LineNr">49 </span> b8/copy-to-eax 1/imm32/exit <span id="L50" class="LineNr">50 </span> cd/syscall 0x80/imm8 <span id="L51" class="LineNr">51 </span> -<span id="L52" class="LineNr">52 </span><span class="subxFunction">factorial</span>: <span class="subxComment"># n : int -> int/eax</span> +<span id="L52" class="LineNr">52 </span><span class="subxFunction">factorial</span>: <span class="subxComment"># n: int -> int/eax</span> <span id="L53" class="LineNr">53 </span> <span class="subxS1Comment"># . prologue</span> <span id="L54" class="LineNr">54 </span> 55/push-ebp <span id="L55" class="LineNr">55 </span> 89/<- %ebp 4/r32/esp @@ -118,7 +118,7 @@ if ('onhashchange' in window) { <span id="L59" class="LineNr">59 </span> b8/copy-to-eax 1/imm32 <span id="L60" class="LineNr">60 </span> 81 7/subop/compare *(ebp+8) 1/imm32 <span id="L61" class="LineNr">61 </span> 7e/jump-if-<= $factorial:end/disp8 -<span id="L62" class="LineNr">62 </span> <span class="subxComment"># var ebx : int = n-1</span> +<span id="L62" class="LineNr">62 </span> <span class="subxComment"># var ebx: int = n-1</span> <span id="L63" class="LineNr">63 </span> 8b/-> *(ebp+8) 3/r32/ebx <span id="L64" class="LineNr">64 </span> 4b/decrement-ebx <span id="L65" class="LineNr">65 </span> <span class="subxComment">#</span> |