home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / Asm / 86LIB3.ZIP / SCRN_TYP.8 < prev    next >
Encoding:
Text File  |  1980-01-06  |  297 b   |  14 lines

  1. _SCRN_TYP:
  2.   Mov bx,0B800H     ;default is color.
  3.   int 11h           ;get equipment configuration.
  4.   and ax,0030H      ;isolate crt switches.
  5.   cmp al,30h
  6.   jne _scrn_typ1
  7.   mov bx,0B000h     ;reset for b&w.
  8.  
  9. _scrn_typ1:
  10.   pop ax
  11.   Push  BX        ;return video area.
  12.   push ax
  13.     Ret
  14.