Hello folks, I'm new on the forum. I have some troubles with CMOVcc. I don't know how to make it available.
I use MASM32.
this is code:
.686
.model flat, stdcall
include \masm32\include\masm32rt.inc
.data
.code
start:
mov ax, 4
mov bx, 8
cmp ax, 0
cmovz ax, bx
inkey
exit
end start
and after assembling I get this error message:
"D:\masm32\tbc\cmov.asm(14) : error A2085: instruction or register not accepted in current CPU mode".
thanks in advance