shared libraries can now export variables on MIPS
[voodoo-lang.git] / test / libvar.voo
blobf696e0ce118a3a28b73998b829e05110953cdf12
1 # Shared library exporting a variable.
3 section data
4 export foo
6 align
7 foo:
8 word 42
11 section functions
12 export add_foo
14 align
15 add_foo:
16 function x
17     return add x @foo
18 end function