keep all assembly examples under a/assembly_*.asm

This commit is contained in:
Shark
2016-09-21 13:02:44 +02:00
parent 3bab02464b
commit 259d83e19b
6 changed files with 0 additions and 0 deletions

8
a/assembler_ibm360.asm Normal file
View File

@@ -0,0 +1,8 @@
LA 1,MSGAREA Point Register 1 to message area
SVC 35 Invoke SVC 35 (Write to Operator)
BR 14 Return
MSGAREA EQU * Message Area
DC AL2(19) Total area length = 19 (Prefix length:4 + Data Length:15)
DC XL2'00' 2 bytes binary of zeros
DC C'Hello world!' Text to be written to system console
END