brender-1997/pentprim/SAR16.ASM
2022-05-03 14:31:40 -07:00

20 lines
318 B
NASM

;; Copyright (c) 1992,1993-1995 Argonaut Technologies Limited. All rights reserved.
;;
;; $Id: SAR16.ASM 1.1 1996/09/26 19:04:00 JOHNG Exp $
;; $Locker: $
;;
;; Out of line call for gauranteed SAR
;;
.386p
.model flat
ifndef __WATCOMC__
.code
__sar16 proc
mov eax,4[esp]
sar eax,16
ret
__sar16 endp
endif
end