fixed zmm reg name in disasm

This commit is contained in:
Stanislav Shwartsman 2013-11-29 20:49:20 +00:00
parent 61deec2689
commit c3b666d4ed

View File

@ -67,8 +67,8 @@ static const char *intel_index16[8] = {
"bx" "bx"
}; };
static const char *intel_vector_reg_name[3] = { static const char *intel_vector_reg_name[4] = {
"xmm", "ymm", "zmm" "xmm", "ymm", "???", "zmm"
}; };
////////////////// //////////////////
@ -114,8 +114,8 @@ static const char *att_index16[8] = {
"%bx" "%bx"
}; };
static const char *att_vector_reg_name[3] = { static const char *att_vector_reg_name[4] = {
"%xmm", "%ymm", "%zmm" "%xmm", "%ymm", "%???", "%zmm"
}; };
#define NULL_SEGMENT_REGISTER 7 #define NULL_SEGMENT_REGISTER 7