home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
dos_ency
/
app_a
/
random
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1988-08-11
|
486 b
|
16 lines
.
.
.
mov ax,6601h ; Function = get code page.
int 21h ; Transfer to MS-DOS.
jc error ; Jump if function failed.
mov bx,dx ; Force active page = default.
mov ax,6602h ; Function = set code page.
int 21h ; Transfer to MS-DOS.
jc error ; Jump if function failed.
.
.
.