mirror of
https://github.com/Wack0/IFPSTools.NET.git
synced 2025-06-18 10:45:36 -04:00

libasm: allow generic operand to be used for InlineCmpValueType op2, as well as type tests: refactor and fix tests: add test for InlineCmpValueType on type and variable
16 lines
273 B
Plaintext
16 lines
273 B
Plaintext
.version 23
|
|
|
|
.type primitive(Pointer) Pointer
|
|
.type primitive(S32) S32
|
|
.type primitive(U32) U32
|
|
.type primitive(U8) U8
|
|
|
|
.function(export) U8 INITIALIZEUNINSTALL()
|
|
pushtype U32 ; StackCount = 1
|
|
pushtype U32 ; StackCount = 2
|
|
is Var1, Var2, S32
|
|
is Var1, Var2, Var1
|
|
ret
|
|
|
|
|