Category:360 Assembly macros: Difference between revisions

m
(Add 360 assembly macro page)
 
 
(One intermediate revision by the same user not shown)
Line 1:
This category uses the form [[Has default form::Solution]].
 
[[Category:360 Assembly]]
=={{header|360 Assembly Structured Macros}}==
There is a long history of IBM Assembler 370 Structured Macros. An early very well known version is found in JES328X product. Now there as part of SPM (Structured Programming Macros) concept. A recent version is HLASM Toolkit Features User's Guide (GC26-8710-10) http://publibz.boulder.ibm.com/epubs/pdf/asmtug21.pdf .
You will found :
Line 17 ⟶ 16:
<br>
PROLOG and EPILOG are not part of this set my own version is:
<lang 360asm> MACRO
MACRO
&N PROLOG
&N CSECT
Line 29 ⟶ 27:
ST 15,8(13)
LR 13,15
MEND</lang>
</lang 360asm> MACRO
<lang 360asm>
MACRO
&N EPILOG
&N CNOP 0,4
Line 39 ⟶ 35:
XR 15,15
BR 14
MEND</lang>
 
</lang>
==See also==
* HLASM Programmer's Guide (SC26-4941-06)
1,392

edits