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:
Text File  |  1988-08-11  |  486 b   |  16 lines

  1.         .
  2.         .
  3.         .
  4.         mov     ax,6601h        ; Function = get code page.
  5.         int     21h             ; Transfer to MS-DOS.
  6.         jc      error           ; Jump if function failed.
  7.  
  8.         mov     bx,dx           ; Force active page = default.
  9.  
  10.         mov     ax,6602h        ; Function = set code page.
  11.         int     21h             ; Transfer to MS-DOS.
  12.         jc      error           ; Jump if function failed.
  13.         .
  14.         .
  15.         .
  16.