home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / DICT / DFKC / ZWH / CHCS / TESTLH.ASM < prev    next >
Encoding:
Assembly Source File  |  1998-01-12  |  473 b   |  20 lines

  1. ;
  2. ;               dosver.asm
  3. ;
  4. code            segment
  5.                 org     100h
  6.                 assume  cs:code, ds:code
  7. start:          mov     ax, 3306h
  8.                 int     21h
  9.                 jc      noHiUMB
  10.                 mov     al, 0
  11.                 mov     ah, 4ch
  12.                 int     21h
  13. ;
  14. noHiUMB:        mov     al, 1
  15.                 mov     ah, 4ch
  16.                 int     21h
  17. ;
  18. code            ends
  19.                 end     start
  20.