Nested function: Difference between revisions

Content deleted Content added
Puppydrum64 (talk | contribs)
Puppydrum64 (talk | contribs)
Line 75:
</pre>
=={{header|68000 Assembly}}==
<lang 68000devpac>;program starts here, after loading palettes etc.
 
MOVE.W #3,D1
MOVE.W #'.',D4
Line 91 ⟶ 90:
MOVE.W D0,-(SP)
JSR PrintHex
MOVE.B #'.'D4,D0 ;load separator into D0
JSR PrintChar
MOVE.B #' ',D0
Line 98 ⟶ 97:
JSR MakeItem
CMP.W D0,D1
BCC loop_MakeList ;back to start
RTS