News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

xmm1 ==》 xmm(1)

Started by six_L, September 05, 2014, 03:20:02 PM

Previous topic - Next topic

six_L

ml 6.15.8803
xorps  xmm1,xmm1
;error
xorps  xmm(1),xmm(1)
;passed
that's why?
Say you, Say me, Say the codes together for ever.

jj2007

Which error? This works perfectly with 6.14 + 6.15:

include \masm32\include\masm32rt.inc

.586
.xmm
.code

start:   print "Hello World"
   xorps  xmm1,xmm1
   exit

end start