Loops/Infinite: Difference between revisions

Content added Content deleted
(Added Maple implementation)
(→‎{{header|6502 Assembly}}: Replace JMP with BEQ - smaller, faster, slightly more relocatable)
Line 16: Line 16:
CPX #5
CPX #5
BNE PrintLoop
BNE PrintLoop
JMP InfiniteLoop
BEQ InfiniteLoop


MSG .byte "SPAM", $0A</lang>
MSG .byte "SPAM", $0A</lang>