diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-04-01 15:37:08 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-04-01 15:37:08 +0200 |
| commit | 9abfdb3431f36c83dd57aee9ba13d4ae0a84eeca (patch) | |
| tree | 460280d8d4b1f4c7cffa51b50b59632c1d8c4878 /src/emu | |
| parent | e942a8433bf2c13501d9ada0ff9f77ed4a21142d (diff) | |
| download | box64-9abfdb3431f36c83dd57aee9ba13d4ae0a84eeca.tar.gz box64-9abfdb3431f36c83dd57aee9ba13d4ae0a84eeca.zip | |
Small change to 67 C1 opcode
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64run67.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64run67.c b/src/emu/x64run67.c index 568bc659..7db5494f 100644 --- a/src/emu/x64run67.c +++ b/src/emu/x64run67.c @@ -55,7 +55,7 @@ int Run67(x64emu_t *emu, rex_t rex) case 0xC1: /* GRP2 Ed,Ib */ nextop = F8; - GETED(1); + GETED32(1); tmp8u = F8/* & 0x1f*/; // masking done in each functions if(rex.w) { switch((nextop>>3)&7) { |