f_reg
#define f_reg(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_R ? 0x8 : 0x0))
#define f_reg(byte) (((byte)>>3)&0x7)