Loops/Infinite: Difference between revisions

(add BQN)
Line 100:
string .as "SPAM",#13,#10,#0
.en</lang>
 
=={{header|68000 Assembly}}==
Hardware-specific routines for I/O are left unimplemented and just displayed as a subroutine, as this is not the focus of the task.
<lang 68000devpac>doSPAM:
LEA Message,A0
JSR PrintString
JMP doSPAM
 
Message:
DC.B "SPAM",13,10,0
EVEN</lang>
 
=={{header|8086 Assembly}}==
{{works with|https://www.dosbox.com DOSBox}}
1,489

edits