From e4131e4eb64595d9b24493eb31a9af4c5e21b1eb Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 21 Aug 2021 13:21:50 -0700 Subject: add push/pop/call/ret mem_size fixes to changelog --- src/protected_mode/mod.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/protected_mode') diff --git a/src/protected_mode/mod.rs b/src/protected_mode/mod.rs index 79eb1b1..2d37bc6 100644 --- a/src/protected_mode/mod.rs +++ b/src/protected_mode/mod.rs @@ -4229,9 +4229,8 @@ impl Instruction { /// the reported size is correct for displayed operand sizes (`word [ptr]` will have a /// `MemoryAccessSize` indicating two bytes) but is _not_ sufficient to describe all accesses /// of all instructions. the most notable exception is for operand-size-prefixed `call`, where - /// `66ff10` is the instruction `call word [eax]`, but will push a four-byte `eip`. this same - /// imprecision exists for `jmp word [mem]` as well. tools must account for these inconsistent - /// sizes internally. + /// `66ff10` is the instruction `call word [eax]`, but will push a four-byte `eip`. tools must + /// account for these inconsistent sizes internally. pub fn mem_size(&self) -> Option { if self.mem_size != 0 { Some(MemoryAccessSize { size: self.mem_size }) -- cgit v1.1