home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / turbopas / pstui100.zip / SWAPCARD.PAS < prev    next >
Pascal/Delphi Source File  |  1993-02-09  |  495b  |  19 lines

  1.   Case Card Of
  2.     MonoCard  :Asm
  3.                  xor     ax, ax
  4.                  mov     es, ax
  5.                  mov     ax, es:410h
  6.                  or      ax, 30h
  7.                  mov     es:410h, ax
  8.                End;
  9.  
  10.     ColorCard :Asm
  11.                  xor     ax, ax
  12.                  mov     es, ax
  13.                  mov     ax, es:410h
  14.                  or      ax, 20h
  15.                  and     ax, 0EFh
  16.                  mov     es:410h, ax
  17.                End;
  18.   End;
  19.