Sorting algorithms/Insertion sort: Difference between revisions

m
Line 32:
These programs use two ASSIST macros (XDECO, XPRNT) to keep the code as short as possible.
===Basic===
<lang 360asm>* Insertion sort 16/06/2016
INSSORT CSECT
USING INSSORT,R13 base register
Line 93:
-31 0 1 2 2 4 45 58 65 69 74 82 82 83 88 89 99 104 112 782
</pre>
 
===Assembler Structured Macros===
No harmful gotos [:)Dijkstra], no labels. It's cleaner, but is it clearer?
1,392

edits