summaryrefslogtreecommitdiff
path: root/test-suite/standalone/sassy/tests/sysexit2.scm
blob: 88369ce58151153ef800cec3ab0b296df8d86a33 (plain)
1
2
3
4
5
6
7
8
9
10
11
(export exit mybuff)

(heap (label mybuff (bytes 1)))

(import exit-code)

(text
 (label exit (begin
	 (mov eax 1)
	 (mov ebx (& exit-code))
	 (int #x80))))