home *** CD-ROM | disk | FTP | other *** search
- p286n
-
- public gusplayon
- public gusplayoff
- Extrn MainVolume:Word,ChanOn:Word,PatternRow:Word,PlayingPattern:Word
- Extrn LoadMod:Far,ClearMem:Far,StartPlaying:Far,StopPlaying:Far,Init:Far,InitDevice:Far
- extrn resetplayer:far
- _Code Segment Para 'Code'
-
- assume cs:_Code
-
- Modname db 'INTRANCE.MOD',0
-
- Even
-
- gusplayon proc far
- call InitDevice
- call Init
- mov dx,cs
- mov ds,dx
- mov dx,offset cs:[Modname]
- call LoadMod
- call StartPlaying
- retf
- endp
- gusplayoff:
- call StopPlaying
- call ClearMem
- retf
-
- _Code ends
-
- end
-