about summary refs log tree commit diff stats
path: root/subx/017jump_disp8.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-12 23:41:43 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-12 23:41:43 -0700
commit222c31db2102daecd1e77d66299a3ea01982ec35 (patch)
tree25930bd76874e16651774ba1fd0988397dda5a12 /subx/017jump_disp8.cc
parent01dada15c33dff954f3b76406fd9ed09ef4834c8 (diff)
downloadmu-222c31db2102daecd1e77d66299a3ea01982ec35.tar.gz
4688
Diffstat (limited to 'subx/017jump_disp8.cc')
-rw-r--r--subx/017jump_disp8.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/subx/017jump_disp8.cc b/subx/017jump_disp8.cc
index 57424215..b60d69b6 100644
--- a/subx/017jump_disp8.cc
+++ b/subx/017jump_disp8.cc
@@ -43,7 +43,7 @@ put(name, "74", "jump disp8 bytes away if ZF is set");
 
 :(before "End Single-Byte Opcodes")
 case 0x74: {  // jump rel8 if ZF
-  int8_t offset = static_cast<int>(next());
+  const int8_t offset = static_cast<int>(next());
   if (ZF) {
     trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
@@ -82,7 +82,7 @@ put(name, "75", "jump disp8 bytes away if ZF is not set");
 
 :(before "End Single-Byte Opcodes")
 case 0x75: {  // jump rel8 unless ZF
-  int8_t offset = static_cast<int>(next());
+  const int8_t offset = static_cast<int>(next());
   if (!ZF) {
     trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
@@ -123,7 +123,7 @@ put(name, "7f", "jump disp8 bytes away if greater (ZF is unset, SF == OF)");
 
 :(before "End Single-Byte Opcodes")
 case 0x7f: {  // jump rel8 if !SF and !ZF
-  int8_t offset = static_cast<int>(next());
+  const int8_t offset = static_cast<int>(next());
   if (!ZF && SF == OF) {
     trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
@@ -165,7 +165,7 @@ put(name, "7d", "jump disp8 bytes away if greater or equal (SF == OF)");
 
 :(before "End Single-Byte Opcodes")
 case 0x7d: {  // jump rel8 if !SF
-  int8_t offset = static_cast<int>(next());
+  const int8_t offset = static_cast<int>(next());
   if (SF == OF) {
     trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
@@ -207,7 +207,7 @@ put(name, "7c", "jump disp8 bytes away if lesser (SF != OF)");
 
 :(before "End Single-Byte Opcodes")
 case 0x7c: {  // jump rel8 if SF and !ZF
-  int8_t offset = static_cast<int>(next());
+  const int8_t offset = static_cast<int>(next());
   if (SF != OF) {
     trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;
@@ -264,7 +264,7 @@ put(name, "7e", "jump disp8 bytes away if lesser or equal (ZF is set or SF != OF
 
 :(before "End Single-Byte Opcodes")
 case 0x7e: {  // jump rel8 if SF or ZF
-  int8_t offset = static_cast<int>(next());
+  const int8_t offset = static_cast<int>(next());
   if (ZF || SF != OF) {
     trace(90, "run") << "jump " << NUM(offset) << end();
     EIP += offset;