home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Sound
/
Player
/
DasModulePlayer3,4.LHA
/
dasmodplayer
/
rexx
/
QUIT.drx
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1994-08-12
|
282 b
|
19 lines
/*
Arexx demoscript for DasModplayer by Erno Tuomainen
This will JUST Remove DASModPlayer from Memory and stop playing
*/
OPTIONS Results
result = SHOW('Ports','DASMP')
if result=0 then DO
say 'No DASModPlayer in memory, quitting'
say ''
EXIT
END
ADDRESS 'DASMP'
QUIT
EXIT