mirror of https://github.com/PCSX2/pcsx2.git
Merge pull request #134 from Sonicadvance1/NOT32-declaration
Fix NOT32M function declaration.
This commit is contained in:
commit
1d56035a56
|
@ -442,7 +442,7 @@ extern void AND8RtoR( x86IntRegType to, x86IntRegType from );
|
||||||
// not r32
|
// not r32
|
||||||
extern void NOT32R( x86IntRegType from );
|
extern void NOT32R( x86IntRegType from );
|
||||||
// not m32
|
// not m32
|
||||||
extern void NOT32M( u32 from );
|
extern void NOT32M( uptr from );
|
||||||
// neg r32
|
// neg r32
|
||||||
extern void NEG32R( x86IntRegType from );
|
extern void NEG32R( x86IntRegType from );
|
||||||
// neg m32
|
// neg m32
|
||||||
|
|
Loading…
Reference in New Issue