diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-05-08 09:50:59 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-05-08 09:50:59 -0700 |
commit | 5ed05c40bec0cb566fdb8012e134ed61ee93209f (patch) | |
tree | 1079a7b612c8fafb373a85152dff7196f7cd96fe | |
parent | 45bef6b9e952beb8908fd971e7f81c26430a8fa9 (diff) | |
download | mu-5ed05c40bec0cb566fdb8012e134ed61ee93209f.tar.gz |
5146
-rw-r--r-- | subx/013direct_addressing.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/013direct_addressing.cc b/subx/013direct_addressing.cc index 779c7e0a..c2dfa911 100644 --- a/subx/013direct_addressing.cc +++ b/subx/013direct_addressing.cc @@ -488,7 +488,7 @@ void test_shift_right_logical_r32_with_cl() { } :(before "End Op d3 Subops") -case 5: { // shift right r/m32 by CL, preserving sign +case 5: { // shift right r/m32 by CL, padding zeroes trace(Callstack_depth+1, "run") << "subop: shift right by CL bits, while padding zeroes" << end(); uint8_t count = Reg[ECX].u & 0x1f; // OF is only defined if count is 1 |