summaryrefslogtreecommitdiff
path: root/boot/test.elna
blob: e56547d2f0b33940499554ca55131e76a3cf5bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
program

proc main(x: Word, y: Word)
begin
	_write_s(4, @x);
	_write_s(4, @y);

	y := 0x0a2c3063;
	_write_s(4, @y)
end

begin
	main(0x0a2c3061, 0x0a2c3062)
end.