home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c010
/
1.ddi
/
FLILIB3.ZIP
/
FLISRC3.ZIP
/
COPYSCRE.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1989-11-16
|
239 b
|
14 lines
#include "aascreen.h"
void aa_copy_screen(Vscreen *s, Vscreen *d)
{
i86_wcopy(s->p, d->p, d->psize>>1);
i86_wcopy(s->cmap, d->cmap, (AA_COLORS*3)>>1);
}
void aa_clear_screen(Vscreen *vs)
{
i86_wzero(vs->p, vs->psize>>1);
}