home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Popular Software (Premium Edition)
/
mycd.iso
/
DICT
/
DFKC
/
ZWH
/
CHCS
/
TESTLH.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1998-01-12
|
473 b
|
20 lines
;
; dosver.asm
;
code segment
org 100h
assume cs:code, ds:code
start: mov ax, 3306h
int 21h
jc noHiUMB
mov al, 0
mov ah, 4ch
int 21h
;
noHiUMB: mov al, 1
mov ah, 4ch
int 21h
;
code ends
end start