Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


How to access float number 2, 3, 4 of a xmm register ?

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
Kerast
How do I cheat?
Reputation: 0

Joined: 13 Aug 2016
Posts: 4

PostPosted: Wed Aug 17, 2016 3:49 pm    Post subject: How to access float number 2, 3, 4 of a xmm register ? Reply with quote

Hello,

I have this xmm0 stack that can store 4 floats :

xmm0: 27.23 - 23.40 - 0.00 - 0.00
xmm1: 0.00 - 0.00 - 0.00 - 0.00
xmm2: 0.00 - 0.00 - 0.00 - 0.00
xmm3: 0.00 - 0.00 - 0.00 - 0.00
xmm4: 0.00 - 0.00 - 0.00 - 0.00
xmm5: 0.00 - 0.00 - 0.00 - 0.00
xmm6: 0.00 - 0.00 - 0.00 - 0.00
xmm7: 0.00 - 0.00 - 0.00 - 0.00

When I run this line of code :

Code:
addss xmm0,[AddThisValueToIt] // value = 10


it adds the value to the first float so, 27.3 + 10.0= 37.3

How can I add this value to the second float of the xmm0 register ?
Back to top
View user's profile Send private message
ParkourPenguin
I post too much
Reputation: 152

Joined: 06 Jul 2014
Posts: 4696

PostPosted: Wed Aug 17, 2016 4:11 pm    Post subject: Reply with quote

addps:
Code:
code:
  addps xmm0,[AddThisValueToIt]
  ...

AddThisValueToIt:
  dd (float)10
  dd (float)10
  dd 0
  dd 0
(make sure AddThisValueToIt is 16-byte aligned)

shufps / addss:
Code:
code:
  addss xmm0,[AddThisValueToIt]
  shufps xmm0,xmm0,E1
  addss xmm0,[AddThisValueToIt]
  shufps xmm0,xmm0,E1
  ...

AddThisValueToIt:
  dd (float)10

_________________
I don't know where I'm going, but I'll figure it out when I get there.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites