diff options
| author | iximeow <me@iximeow.net> | 2021-08-21 13:13:26 -0700 | 
|---|---|---|
| committer | iximeow <me@iximeow.net> | 2021-08-21 13:15:46 -0700 | 
| commit | 9687a5af1d712da41992cba8d241ddef8bdc50ec (patch) | |
| tree | a17d37ad3096c86f7c0247ed08ef2ff5a9f27cf2 /test/protected_mode | |
| parent | cef4feeaf9c64e03a6728f267750ac2fb32eb9ff (diff) | |
clarify inaccurate 32/16-bit `call/jmp [mem]` mem_size
Diffstat (limited to 'test/protected_mode')
| -rw-r--r-- | test/protected_mode/operand.rs | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/test/protected_mode/operand.rs b/test/protected_mode/operand.rs index a114e69..6eb9ba5 100644 --- a/test/protected_mode/operand.rs +++ b/test/protected_mode/operand.rs @@ -43,4 +43,8 @@ fn test_implied_memory_width() {      assert_eq!(mem_size_of(&[0x66, 0x58]), Some(4));      assert_eq!(mem_size_of(&[0xff, 0xf0]), Some(4));      assert_eq!(mem_size_of(&[0x66, 0xff, 0xf0]), Some(2)); +    // unlike 64-bit mode, operand-size prefixed call and jump do have a different size: they read +    // two bytes. +    assert_eq!(mem_size_of(&[0x66, 0xff, 0x10]), Some(2)); +    assert_eq!(mem_size_of(&[0x66, 0xff, 0x20]), Some(2));  }  | 
