Pigmeo was a compiler and framework for writing microcontroller firmware in C# and other .NET languages, developed by Adrián Bulnes (Urriellu) between 2007 and 2010. This is a frozen, read-only archive of the project’s website, pigmeo.org; nothing here is maintained. Source code: github.com/Urriellu/pigmeo · Original capture: Wayback Machine · urriellu.net

CIL Instructions

From Pigmeo Development Wiki

This is a small reference guide. For more information, see:

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.