examples/launcher.xyw
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
.include "lib/macros.xyw"
executing puts JSRw print-args.xim puts JSRw NL
print-args.xim system.image_exec STW
executing puts JSRw helloworld.xim puts JSRw NL
helloworld.xim system.image_exec STW
done puts JSRw NL
HLT
.label executing
.string "Executing: "
.label done
.string "Done!"
.label print-args.xim
.string "print-args.xim hello world"
.label helloworld.xim
.string "helloworld.xim"
.include "lib/puts.xyw"
|