summaryrefslogtreecommitdiffhomepage
path: root/samples/echo.mixal
diff options
context:
space:
mode:
Diffstat (limited to 'samples/echo.mixal')
-rw-r--r--samples/echo.mixal10
1 files changed, 10 insertions, 0 deletions
diff --git a/samples/echo.mixal b/samples/echo.mixal
new file mode 100644
index 0000000..9b87adf
--- /dev/null
+++ b/samples/echo.mixal
@@ -0,0 +1,10 @@
+* read from the console
+TERM EQU 19
+MSG EQU 500
+PRINT EQU 20
+ ORIG 1000
+START IN MSG(TERM)
+* JBUS *(TERM)
+ OUT MSG(TERM)
+ HLT
+ END START