diff options
| author | Mason Reed <mason@vector35.com> | 2025-12-08 19:18:12 -0500 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-12-10 17:35:19 -0500 |
| commit | 2c7ba495a6c1d8b3639b74334b0cdd1809af807e (patch) | |
| tree | a83f47d51954ad4abf24c64f6d37465b1ebbc1ea /arch/msp430/src | |
| parent | bc195c1c21da0400a1a1dde1fcdde45d687e666f (diff) | |
[Rust] Remove `UnusedRegisterStackInfo` and update architecture documentation
Diffstat (limited to 'arch/msp430/src')
| -rw-r--r-- | arch/msp430/src/architecture.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/msp430/src/architecture.rs b/arch/msp430/src/architecture.rs index 91826193..ef4c503a 100644 --- a/arch/msp430/src/architecture.rs +++ b/arch/msp430/src/architecture.rs @@ -5,7 +5,7 @@ use crate::register::Register; use binaryninja::{ architecture::{ Architecture, CoreArchitecture, CustomArchitectureHandle, FlagCondition, InstructionInfo, - UnusedIntrinsic, UnusedRegisterStack, UnusedRegisterStackInfo, + UnusedIntrinsic, UnusedRegisterStack, }, disassembly::{InstructionTextToken, InstructionTextTokenKind}, Endianness, @@ -42,7 +42,7 @@ impl Msp430 { impl Architecture for Msp430 { type Handle = CustomArchitectureHandle<Self>; - type RegisterStackInfo = UnusedRegisterStackInfo<Self::Register>; + type RegisterStackInfo = UnusedRegisterStack<Self::Register>; type RegisterStack = UnusedRegisterStack<Self::Register>; type Register = Register; type RegisterInfo = Register; |
