You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
371 B
24 lines
371 B
; fastopen.asm
|
|
;
|
|
; Copyright (c) 1991, Microsoft Corporation
|
|
;
|
|
; History:
|
|
; 13-Apr-1992 Sudeep Bharati (sudeepb)
|
|
; Created.
|
|
;
|
|
; On NT this utility is just a stub which does nothing.
|
|
;
|
|
|
|
code segment byte public 'CODE'
|
|
assume cs:code, ds:code, es:code
|
|
|
|
org 100h
|
|
public start
|
|
start:
|
|
mov ah,4ch
|
|
xor al,al
|
|
int 21h
|
|
ret
|
|
|
|
code ends
|
|
end start
|