mirror of
https://github.com/emptyynes/LIVM.git
synced 2025-01-06 16:42:25 +03:00
15 lines
282 B
Text
15 lines
282 B
Text
|
[mainfile]
|
||
|
[x64u+DATA+minsize-8]
|
||
|
object helloworld:
|
||
|
|"hello world", |0 ?
|
||
|
length=|12;
|
||
|
object hellohell:
|
||
|
|"hell-oh!", |0 ?
|
||
|
length=|9;
|
||
|
[x64+CODE+nominsize]
|
||
|
section start:
|
||
|
write |1 ^helloworld, #helloworld.length;
|
||
|
out |1;
|
||
|
write |1 ^hellohell, #hellohell.length;
|
||
|
out |1;
|
||
|
poff;
|