LIVM/main.faxm

9 lines
261 B
Text
Raw Permalink Normal View History

2022-04-09 11:18:01 +03:00
[x64u+DATA+align-8]
string helloworld: |"hello world";
string hellohell: |"hell-oh!";
[x64+CODE+noalign]
2022-04-09 00:20:48 +03:00
section start:
2022-04-09 11:18:01 +03:00
console.print(^helloworld, #helloworld.length)
console.print(^hellohell, #hellohell.length)
2022-04-15 18:22:30 +03:00
rom.write ^hellohell, #hellohell.length
2022-04-09 11:18:01 +03:00
poff