문제

What does the following instruction mean ---> ADD.D F4,F0,F2 ; Can someone explain what it does>

도움이 되었습니까?

해결책

That isn't X86, probably MIPS64. The .D means double precision floating point.

ADD.D F4,F0,F2

Means add the contents of floating registers F0 and F2 as double precision floating point numbers and store the result into register F4.

http://www.tik.ee.ethz.ch/education/lectures/TI1/materials/assemblylanguageprogdoc.pdf

enter image description here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top