diff options
author | iximeow <me@iximeow.net> | 2021-06-28 22:14:17 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-06-28 22:14:17 -0700 |
commit | 7f0429ad45f748b58658ba41420ca1d0f3784f48 (patch) | |
tree | c404663311d19f510ba71b7633b312a55d375698 /src/protected_mode/display.rs | |
parent | 5a1fd6f773320c845f2549722b9f27094d68bdf2 (diff) |
round out x86_32 support - avx2, avx, memory sizes
Diffstat (limited to 'src/protected_mode/display.rs')
-rw-r--r-- | src/protected_mode/display.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protected_mode/display.rs b/src/protected_mode/display.rs index 1964758..acbb43f 100644 --- a/src/protected_mode/display.rs +++ b/src/protected_mode/display.rs @@ -3314,7 +3314,7 @@ impl Instruction { } const MEM_SIZE_STRINGS: [&'static str; 64] = [ - "byte", "word", "BUG", "dword", "far", "BUG", "BUG", "qword", + "byte", "word", "BUG", "dword", "far", "ptr", "BUG", "qword", "BUG", "mword", "BUG", "BUG", "BUG", "BUG", "BUG", "xmmword", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "ymmword", |