Text only
|
Text with Images
The MASM Forum
General => The Campus => Topic started by: six_L on September 05, 2014, 03:20:02 PM
Title:
xmm1 ==》 xmm(1)
Post by:
six_L
on
September 05, 2014, 03:20:02 PM
ml 6.15.8803
Code
Select
Expand
xorps xmm1,xmm1
;error
Code
Select
Expand
xorps xmm(1),xmm(1)
;passed
that's why?
Title:
Re: xmm1 ==》 xmm(1)
Post by:
jj2007
on
September 05, 2014, 05:46:38 PM
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
Text only
|
Text with Images