Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
16
Task/Loops-Infinite/360-Assembly/loops-infinite.360
Normal file
16
Task/Loops-Infinite/360-Assembly/loops-infinite.360
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
INFINITE CSECT , this PGM control section
|
||||
INFINITE AMODE 31 addressing mode 31 bit
|
||||
INFINITE RMODE ANY loader can load either 24 or 31
|
||||
BAKR 14,0 stack caller's register contents
|
||||
LR 12,15 establish base
|
||||
LA 13,0 no savearea
|
||||
USING INFINITE,12 base to assembler
|
||||
LA 10,1 1 in reg 10
|
||||
LA 11,2 2 in reg 11
|
||||
LOOP EQU *
|
||||
CR 10,11 1==2?
|
||||
BE RETURN Yes, exit.
|
||||
WTO 'SPAM',ROUTCDE=11 print SPAM to syslog
|
||||
B LOOP No, check again.
|
||||
RETURN PR , return to caller
|
||||
END INFINITE
|
||||
Loading…
Add table
Add a link
Reference in a new issue