home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TopWare Tools
/
TOOLS.iso
/
tools
/
top1576
/
gepackt.exe
/
SAMPLES.ZIP
/
SAMPLES
/
CAS-1701.C
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-05-25
|
288 b
|
13 lines
// "Cascade-1701" decode
#include "dlink.h"
far Decode_Cascade(int SP) { register i,SI;
Seek(EP+0x22); Read(Page_C,0x200);
SI= (unsigned int) EP+0x122;
for (i=0;i<0x200-10;i++, SP--, SI++) ((uint far*)(Page_C+i))[0] ^= (SI^SP);
}
far decode() { Decode_Cascade(0x682); }