-
I'm working with an architecture which has a stack pointer register (SP) of size 2. The ram space has a size of 4. In order for sleigh to allow this the value of the stack pointer needs to be extended to 4 bytes to use the ram space. Unfortunately using This is exactly #773. I'm going to attempt the segmentop strategy. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@emteere using the segmentop in the pspec was the way to go. I had to set the type to protected in order for the segmentation to be correct though. I'm not sure where I can find the list of types to choose from. Using protected does cause the x86 16 bit protected mode analyzers to show up even though it is not an x86 processor. |
Beta Was this translation helpful? Give feedback.
@emteere using the segmentop in the pspec was the way to go. I had to set the type to protected in order for the segmentation to be correct though. I'm not sure where I can find the list of types to choose from. Using protected does cause the x86 16 bit protected mode analyzers to show up even though it is not an x86 processor.