AAM and AAD instruction fixes, fixes #2551.

This commit is contained in:
OBattler
2022-08-01 23:40:11 +02:00
parent 9b37a1a0eb
commit 754058e2e5
6 changed files with 31 additions and 6 deletions

View File

@@ -165,6 +165,14 @@ x86_doabrt(int x86_abrt)
}
void
x86de(char *s, uint16_t error)
{
cpu_state.abrt = ABRT_DE;
abrt_error = error;
}
void
x86gpf(char *s, uint16_t error)
{