home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 19
/
CD_ASCQ_19_010295.iso
/
dos
/
prg
/
pas
/
swag
/
savescrn.swg
/
0007_SAVE7.PAS.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-05-28
|
510b
|
19 lines
{
well.. if you don't mind it not being in assembly, i can help..
BTW: your 19?? Byte Array wouldn't store the whole screen.. barely half of
it. the color Text screen is 4000 Bytes. 2000 Characters + 2000 attributes
of those Characters.
}
Type
screen = Array[1..4000] of Byte;
Var
scr : screen Absolute $b800:0000; (* or $B000:0000 For Mono *)
scrf : File of screen;
begin
assign(scrf,paramstr(1)); (* or Whatever Filename *)
reWrite(scrf);
Write(scrf,scr);
close(scrf);
end.