From 7e274cf2be2afcd54b187a3184b5aefe79ebf0c9 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Wed, 26 Sep 2018 10:48:44 -0700 Subject: 4520 --- html/subx/017jump_disp8.cc.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'html/subx/017jump_disp8.cc.html') diff --git a/html/subx/017jump_disp8.cc.html b/html/subx/017jump_disp8.cc.html index 881e2991..bc581bd6 100644 --- a/html/subx/017jump_disp8.cc.html +++ b/html/subx/017jump_disp8.cc.html @@ -82,7 +82,7 @@ if ('onhashchange' in window) { 19 :(before "End Single-Byte Opcodes") 20 case 0xeb: { // jump rel8 21 int8_t offset = static_cast<int>(next()); - 22 trace(90, "run") << "jump " << NUM(offset) << end(); + 22 trace(90, "run") << "jump " << NUM(offset) << end(); 23 EIP += offset; 24 break; 25 } @@ -108,7 +108,7 @@ if ('onhashchange' in window) { 45 case 0x74: { // jump rel8 if ZF 46 int8_t offset = static_cast<int>(next()); 47 if (ZF) { - 48 trace(90, "run") << "jump " << NUM(offset) << end(); + 48 trace(90, "run") << "jump " << NUM(offset) << end(); 49 EIP += offset; 50 } 51 break; @@ -147,7 +147,7 @@ if ('onhashchange' in window) { 84 case 0x75: { // jump rel8 unless ZF 85 int8_t offset = static_cast<int>(next()); 86 if (!ZF) { - 87 trace(90, "run") << "jump " << NUM(offset) << end(); + 87 trace(90, "run") << "jump " << NUM(offset) << end(); 88 EIP += offset; 89 } 90 break; @@ -188,7 +188,7 @@ if ('onhashchange' in window) { 125 case 0x7f: { // jump rel8 if !SF and !ZF 126 int8_t offset = static_cast<int>(next()); 127 if (!ZF && SF == OF) { -128 trace(90, "run") << "jump " << NUM(offset) << end(); +128 trace(90, "run") << "jump " << NUM(offset) << end(); 129 EIP += offset; 130 } 131 break; @@ -230,7 +230,7 @@ if ('onhashchange' in window) { 167 case 0x7d: { // jump rel8 if !SF 168 int8_t offset = static_cast<int>(next()); 169 if (SF == OF) { -170 trace(90, "run") << "jump " << NUM(offset) << end(); +170 trace(90, "run") << "jump " << NUM(offset) << end(); 171 EIP += offset; 172 } 173 break; @@ -272,7 +272,7 @@ if ('onhashchange' in window) { 209 case 0x7c: { // jump rel8 if SF and !ZF 210 int8_t offset = static_cast<int>(next()); 211 if (SF != OF) { -212 trace(90, "run") << "jump " << NUM(offset) << end(); +212 trace(90, "run") << "jump " << NUM(offset) << end(); 213 EIP += offset; 214 } 215 break; @@ -329,7 +329,7 @@ if ('onhashchange' in window) { 266 case 0x7e: { // jump rel8 if SF or ZF 267 int8_t offset = static_cast<int>(next()); 268 if (ZF || SF != OF) { -269 trace(90, "run") << "jump " << NUM(offset) << end(); +269 trace(90, "run") << "jump " << NUM(offset) << end(); 270 EIP += offset; 271 } 272 break; -- cgit 1.4.1-2-gfad0