We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28953a8 commit 9a1ae32Copy full SHA for 9a1ae32
hello.alpha
@@ -0,0 +1,3 @@
1
+main() {
2
+ print "Hallo Welt"
3
+}
hello.s
@@ -0,0 +1,17 @@
+.text
+.globl _alpha_main
+_alpha_main:
4
+ pushl %ebp
5
+ movl %esp, %ebp
6
+# Begin Scope
7
+# Begin print
8
+ pushl $L_0_STR
9
+ call _print_str
10
+ addl $4, %esp
11
+ call _print_ln
12
+# End print
13
+# End Scope
14
+ popl %ebp
15
+ret
16
+L_0_STR:
17
+ .ascii "Hallo Welt\0"
0 commit comments