CIL Instructions
From Pigmeo Development Wiki
This is a small reference guide. For more information, see:
- CLI standard, CIL is in Partition III (page 319)
Contents |
ldc
Loads a constant into the heap
ldc.i4.m1
Push -1 onto the stack as int32.
ldc.i4.s xxx
Push num onto the stack as int32, short form (creo que es para pasarle como parĂ¡metro en CIL un short (int16)
ldc.i4 xxx
Push num of type int32 onto the stack as int32.
ldc.i8
Push num of type int64 onto the stack as int64.
ldc.r4
Push num of type float32 onto the stack as F.
ldc.r8
Push num of type float64 onto the stack as F.

