home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / cdfm.zip / TEXTMODE.RT < prev    next >
Text File  |  1993-06-21  |  361b  |  18 lines

  1. public  _text_mode
  2.  
  3. ;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  4. ; Switch to text mode
  5. ; In:
  6. ;   None
  7. ; Out:
  8. ;   None
  9. ;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  10. _text_mode:
  11.         push ax
  12.         mov v86r_ax,3
  13.         mov al,10h
  14.         int 33h
  15.         pop ax
  16.         ret
  17.  
  18.