about summary refs log tree commit diff stats
path: root/subx/016jump_relative.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/016jump_relative.cc')
-rw-r--r--subx/016jump_relative.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/subx/016jump_relative.cc b/subx/016jump_relative.cc
index 48105414..57424215 100644
--- a/subx/016jump_relative.cc
+++ b/subx/016jump_relative.cc
@@ -19,7 +19,7 @@ put(name, "eb", "jump disp8 bytes away");
 :(before "End Single-Byte Opcodes")
 case 0xeb: {  // jump rel8
   int8_t offset = static_cast<int>(next());
-  trace(2, "run") << "jump " << NUM(offset) << end();
+  trace(90, "run") << "jump " << NUM(offset) << end();
   EIP += offset;
   break;
 }
@@ -45,7 +45,7 @@ put(name, "74", "jump disp8 bytes away if ZF is set");
 case 0x74: {  // jump rel8 if ZF
   int8_t offset = static_cast<int>(next());
   if (ZF) {
-    trace(2, "run") << "jump " << NUM(offset) << end();
+    trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
   }
   break;
@@ -84,7 +84,7 @@ put(name, "75", "jump disp8 bytes away if ZF is not set");
 case 0x75: {  // jump rel8 unless ZF
   int8_t offset = static_cast<int>(next());
   if (!ZF) {
-    trace(2, "run") << "jump " << NUM(offset) << end();
+    trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
   }
   break;
@@ -125,7 +125,7 @@ put(name, "7f", "jump disp8 bytes away if greater (ZF is unset, SF == OF)");
 case 0x7f: {  // jump rel8 if !SF and !ZF
   int8_t offset = static_cast<int>(next());
   if (!ZF && SF == OF) {
-    trace(2, "run") << "jump " << NUM(offset) << end();
+    trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
   }
   break;
@@ -167,7 +167,7 @@ put(name, "7d", "jump disp8 bytes away if greater or equal (SF == OF)");
 case 0x7d: {  // jump rel8 if !SF
   int8_t offset = static_cast<int>(next());
   if (SF == OF) {
-    trace(2, "run") << "jump " << NUM(offset) << end();
+    trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
   }
   break;
@@ -209,7 +209,7 @@ put(name, "7c", "jump disp8 bytes away if lesser (SF != OF)");
 case 0x7c: {  // jump rel8 if SF and !ZF
   int8_t offset = static_cast<int>(next());
   if (SF != OF) {
-    trace(2, "run") << "jump " << NUM(offset) << end();
+    trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
   }
   break;
@@ -266,7 +266,7 @@ put(name, "7e", "jump disp8 bytes away if lesser or equal (ZF is set or SF != OF
 case 0x7e: {  // jump rel8 if SF or ZF
   int8_t offset = static_cast<int>(next());
   if (ZF || SF != OF) {
-    trace(2, "run") << "jump " << NUM(offset) << end();
+    trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
   }
   break;