-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Il.il
47 lines (36 loc) · 1.15 KB
/
Il.il
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// assembly references
.assembly extern mscorlib
{
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 )
.ver 4:0:0:0
}
// assembly manifest
.assembly ilhw
{
.custom instance void [mscorlib]System.Runtime.Versioning.TargetFrameworkAttribute::.ctor(string)
= ( 01 00 1C 2E 4E 45 54 46 72 61 6D 65 77 6F 72 6B
2C 56 65 72 73 69 6F 6E 3D 76 34 2E 35 2E 33 01
00 54 0E 14 46 72 61 6D 65 77 6F 72 6B 44 69 73
70 6C 61 79 4E 61 6D 65 14 2E 4E 45 54 20 46 72
61 6D 65 77 6F 72 6B 20 34 2E 35 2E 33 )
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.module ilhw.dll
.imagebase 0x00400000
.file alignment 0x00000200
.stackreserve 0x00100000
.subsystem 0x0003
.corflags 0x00000001
.class public abstract auto ansi sealed ILHW.Program
extends [mscorlib]System.Object // nope, not implicit P:
{
.method public hidebysig static void Main(class [mscorlib]System.String[] args) cil managed
{
.entrypoint // this method is the entry point of the program
.maxstack 1 // the maximum amount of objects on the stack is 1.
ldstr "Hello World"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
}