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:
Rick Altherr 2017-11-22 12:03:49 -08:00 committed by radare
parent e68c3e1c1a
commit e9f179f674

View File

@ -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"