Sunday 24 November 2013

The MSIL Assembler - ilasm

The MSIL Assembler compiles IL code into a portable executable (PE) file. Its usage is as follows:

ilasm [options] filename

The options include flags for specific processor architectures e.g. /arm for ARM CPU, /itanium for Intel Itanium and /x64 for 64-bit AMD processor. Assembly of IL is essentially what a JIT compiler, such as csc, does.

No comments: