summaryrefslogtreecommitdiffhomepage
path: root/samples/echo.mixal
blob: 9b87adff96b2eca2960b2702949e8b8808a39dda (plain)
1
2
3
4
5
6
7
8
9
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