home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
PCTV3N1.ZIP
/
DUMPMONO.SRC
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1992-02-12
|
260 b
|
13 lines
procedure B000seg; Far; External 'KERNEL' Index 181;
procedure DumpStr2Mono(S:String);
type
screenar=array[1..256] of word;
var
mp:^screenar;
i:byte;
begin
mp:=ptr(ofs(B000seg),0);
for i:=1 to length(S) do mp^[i]:=ord(S[i])+$7000;
end;