2025-04-27 07:49:33 -04:00

25 lines
371 B
NASM

; 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