View previous topic :: View next topic |
Author |
Message |
yazigegeda Expert Cheater
Reputation: 0
Joined: 22 Jan 2019 Posts: 183
|
Posted: Mon Aug 24, 2020 6:11 am Post subject: xmm0 compilation failed? |
|
|
Code: |
movss xmm0,(float)50.00
|
What should i do? help me! :x
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25804 Location: The netherlands
|
Posted: Mon Aug 24, 2020 7:23 am Post subject: |
|
|
alloc(someaddress,4)
someaddress:
dd (float)50
...
movss xmm0,[someaddress]
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3325
|
Posted: Mon Aug 24, 2020 12:09 pm Post subject: |
|
|
As DB says.
Those instructions move data between registers or registers and memory locations.
|
|
Back to top |
|
 |
blankTM Cheater
Reputation: 1
Joined: 03 May 2020 Posts: 49
|
Posted: Mon Aug 24, 2020 3:05 pm Post subject: Re: xmm0 compilation failed? |
|
|
cvtsi2ss xmm0,#50
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25804 Location: The netherlands
|
Posted: Mon Aug 24, 2020 11:50 pm Post subject: Re: xmm0 compilation failed? |
|
|
blankTM wrote: | cvtsi2ss xmm0,#50 |
that instruction format doesn't exist
but what may work is
Code: |
push eax
mov eax,#50
cvtsi2ss xmm0,eax
pop eax
|
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3325
|
Posted: Tue Aug 25, 2020 7:21 am Post subject: Re: xmm0 compilation failed? |
|
|
blankTM wrote: | cvtsi2ss xmm0,#50 |
You guys need to look at the instructions' manual.
|
|
Back to top |
|
 |
blankTM Cheater
Reputation: 1
Joined: 03 May 2020 Posts: 49
|
Posted: Tue Aug 25, 2020 7:32 am Post subject: Re: xmm0 compilation failed? |
|
|
Ok i made a mistake
|
|
Back to top |
|
 |
|