I can't seem to print the banner A, the # is all on the same line. I am not allowed to edit the string by adding CR nor LF. Help pls!
START: ; first instruction of program
loop
move.b #5,D0
trap #15
lea str,A1
move.b #0,D0
trap #15
bra loop
SIMHALT ; halt simulator
str
dc.b ' # '
dc.b ' # # '
dc.b ' # # '
dc.b ' # # '
dc.b ' ####### '
dc.b ' # # '
dc.b ' # # '
END START ; last line of source