Loops/For with a specified step: Difference between revisions

m
Line 7:
=={{header|360 Assembly}}==
;Basic - Algol style
The opcode BXH uses 3 registerregisters, one for index one for step and one for limit.
<lang 360asm>* Loops/For with a specified step 12/08/2015
LOOPFORS CSECT
Line 33:
</pre>
;Basic - Fortran style
The opcode BXLE uses 3 registerregisters, one for index one for step and one for limit.
<lang 360asm>* == Fortran style ============== test at the end
LA R3,BUF idx=0
1,392

edits