diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-06-12 22:26:45 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-06-12 22:34:22 -0700 |
commit | f99cd767a4a4eb400ebefcf45a7a9dab5137ec6a (patch) | |
tree | 608585daef61d1f94c1bf596cdebe88bddc2ac96 /linux | |
parent | 0511b9fd1170da575170bcde2fa617969cbf6a53 (diff) | |
download | mu-f99cd767a4a4eb400ebefcf45a7a9dab5137ec6a.tar.gz |
periodic run of misc_checks
I should really stop using /disp8 jumps at the top-level given how inconvenient it is to check for overly large offsets.
Diffstat (limited to 'linux')
-rw-r--r-- | linux/bootstrap/033check_operands.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/bootstrap/033check_operands.cc b/linux/bootstrap/033check_operands.cc index 62618204..0d5311ce 100644 --- a/linux/bootstrap/033check_operands.cc +++ b/linux/bootstrap/033check_operands.cc @@ -667,6 +667,7 @@ map</*op*/string, /*bitvector*/uint8_t> Permitted_arguments_0f; //// Class D: just op and disp32 // imm32 imm8 disp32 |disp16 disp8 subop modrm // 0 0 1 |0 0 0 0 +put_new(Permitted_arguments_0f, "80", 0x10); put_new(Permitted_arguments_0f, "82", 0x10); put_new(Permitted_arguments_0f, "83", 0x10); put_new(Permitted_arguments_0f, "84", 0x10); |