; Example how to load 2 files in one bank. org #100 include 2 ; (MWMDRIVR.ASC) MUSIC.INIT_DRIVER JP C,PRINT MUSIC.ALLOC 1 MUSIC.STOP MUSIC.MWK.LOAD B:\MUSIC\SONG.MWK MUSIC.ADDRESS #8000 MUSIC.MWM.LOAD 0,B:\MUSIC\SONG.MWM MUSIC.MWM.INFO songname call print_names MUSIC.ADDRESS #AB00 MUSIC.MWM.LOAD 0,B:\MUSIC\SONG2.MWM MUSIC.MWM.INFO songname call print_names MUSIC.ADDRESS #8000 ; Or #AB00 for SONG2 MUSIC.PLAY 0 ret MUSIC.DRIVER PRINT: ld c,9 jp 5 print_names: ld de,songname call PRINT ld de,next_line call PRINT ld de,wavekitname call PRINT ld de,next_line jp PRINT next_line db 13,10,"$" songname: ds 51,0 wavekitname: ds 9,0