diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-06 14:23:57 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-07-06 14:23:57 +0200 |
| commit | cb73eaf7768cd765cb242bb4526c9ce998e4d82d (patch) | |
| tree | 2c2ed253027ad78ead5271bba67f7558d8062e3a /src/emu | |
| parent | bb38d8d1ca3289422b52b2eb3a89a305afd88436 (diff) | |
| download | box64-cb73eaf7768cd765cb242bb4526c9ce998e4d82d.tar.gz box64-cb73eaf7768cd765cb242bb4526c9ce998e4d82d.zip | |
Work on CMPSS and CMPSD ([DYNAREC] too)
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64runf20f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64runf20f.c b/src/emu/x64runf20f.c index 766a69f8..7bf3c99e 100644 --- a/src/emu/x64runf20f.c +++ b/src/emu/x64runf20f.c @@ -212,7 +212,7 @@ int RunF20F(x64emu_t *emu, rex_t rex) case 0xC2: /* CMPSD Gx, Ex, Ib */ nextop = F8; - GETEX(0); + GETEX(1); GETGX; tmp8u = F8; tmp8s = 0; |