about summary refs log tree commit diff stats
path: root/017jump_disp8.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-03-06 17:41:36 -0800
committerKartik Agaram <vc@akkartik.com>2020-03-06 17:42:17 -0800
commit5c26afb1de61dc650f0f7523c92143747c960432 (patch)
tree22c00a6ba562cbd80e2432201399ee800c5247da /017jump_disp8.cc
parent0743b981a823049bfe0a24f9204e629ce375af39 (diff)
downloadmu-5c26afb1de61dc650f0f7523c92143747c960432.tar.gz
6088 - start using setCC instructions
Diffstat (limited to '017jump_disp8.cc')
-rw-r--r--017jump_disp8.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/017jump_disp8.cc b/017jump_disp8.cc
index d7558401..47a94ea9 100644
--- a/017jump_disp8.cc
+++ b/017jump_disp8.cc
@@ -105,7 +105,7 @@ void test_jne_disp8_success() {
 }
 
 :(before "End Single-Byte Opcodes")
-case 0x75: {  // jump disp8 unless ZF
+case 0x75: {  // jump disp8 if !ZF
   const int8_t offset = static_cast<int>(next());
   if (!ZF) {
     trace(Callstack_depth+1, "run") << "jump " << NUM(offset) << end();