home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
back2roots/padua
/
padua.7z
/
padua
/
ftp.vapor.com
/
amirc
/
submissions
/
Phoenix1_21.lzx
/
bin
/
rexx
/
map.amirx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1996-10-11
|
228 b
|
12 lines
/**/
options results
call open(f1,'ram:master.map','w')
done=0
'say /raw map'
do until done=1
getline
if line.command='005' then writeln(f1,substr(line.rest,2))
else if line.command='007' then done=1
end
call close(f1); exit