Hi,
I would like to use op_t::reg attribute but there is no complete enumeration of x86 generals registers, available.
Moreover, I've written a test to found out each # used for each register and this is what I obtain :
Op1.reg = 0 <- mov al, 0
Op1.reg = 0 <- mov ah, 0
Op1.reg = 19 <- mov ax, 0
Op1.reg = 23 <- mov eax, 0
Op1.reg = 3 <- mov bl, 0
Op1.reg = 3 <- mov bh, 0
Op1.reg = 17 <- mov bx, 0
Op1.reg = 21 <- mov ebx, 0
Op1.reg = 1 <- mov cl, 0
Op1.reg = 1 <- mov ch, 0
Op1.reg = 18 <- mov cx, 0
Op1.reg = 22 <- mov ecx, 0
Op1.reg = 2 <- mov dl, 0
Op1.reg = 2 <- mov dh, 0
Op1.reg = 0 <- mov dx, 0
Op1.reg = 0 <- mov edx, 0
We can remark there is a lot of ambiguities.
How to disable these ambiguities ?
Thanks a lot



