diff options
author | iximeow <me@iximeow.net> | 2021-06-28 00:09:40 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-06-28 00:09:40 -0700 |
commit | 5a1fd6f773320c845f2549722b9f27094d68bdf2 (patch) | |
tree | e65285474a54641c70761db9f38ab5a2c1460748 /src/protected_mode/display.rs | |
parent | c42f84b37c9be599442a44caab289f5fdf971649 (diff) |
protected mode memory sizes
also some long-mode cleanup in corresponding areas
Diffstat (limited to 'src/protected_mode/display.rs')
-rw-r--r-- | src/protected_mode/display.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protected_mode/display.rs b/src/protected_mode/display.rs index f258bad..1964758 100644 --- a/src/protected_mode/display.rs +++ b/src/protected_mode/display.rs @@ -3314,8 +3314,8 @@ impl Instruction { } const MEM_SIZE_STRINGS: [&'static str; 64] = [ - "byte", "word", "BUG", "dword", "BUG", "BUG", "BUG", "qword", - "far", "mword", "BUG", "BUG", "BUG", "BUG", "BUG", "xmmword", + "byte", "word", "BUG", "dword", "far", "BUG", "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", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", "BUG", |