Old lady swallowed a fly: Difference between revisions

m
→‎{{header|Z80 Assembly}}: adjusted formatting of whitespace for easier readability
m (→‎{{header|Z80 Assembly}}: adjusted formatting of whitespace for easier readability)
Line 3,647:
ld b,8 ;8 verses total
outerloop_song:
push bc
ld a,(ix+0)
ld c,a ;get the low byte of verse ptr
ld a,(ix+1)
ld b,a ;get the high byte
;bc = the memory location of Verse1
call loop_meta_PrintString
inc ix
inc ix ;next verse
pop bc
 
 
call WaitChar ;wait for user to press any key before continuing so they
;have time to read it.
 
call WaitChar ;wait for user to press any key before continuing so they
; ;have time to read it.
 
djnz outerloop_song
1,489

edits