mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 11:43:39 +00:00
anal_x86_cs: Fix incorrect aliasing of CS and SS in 16-bit mode (#8867)
Looks like a typo in the offsets caused CS and SS to point to the same offset in the register arena. They are actually distinct segment registers.
This commit is contained in:
parent
e68c3e1c1a
commit
e9f179f674
@ -2668,8 +2668,8 @@ static char *get_reg_profile(RAnal *anal) {
|
||||
"gpr si .16 12 0\n"
|
||||
"gpr di .16 16 0\n"
|
||||
"seg cs .16 52 0\n"
|
||||
"seg ss .16 52 0\n"
|
||||
"seg ds .16 54 0\n"
|
||||
"seg ss .16 54 0\n"
|
||||
"seg ds .16 56 0\n"
|
||||
"seg es .16 58 0\n"
|
||||
"gpr flags .16 56 0\n"
|
||||
"flg cf .1 .448 0\n"
|
||||
|
Loading…
Reference in New Issue
Block a user