36 lines
706 B
ArmAsm
36 lines
706 B
ArmAsm
#################################################################
|
|
# #
|
|
# Copyright 2001, 2007 Fidelity Information Services, Inc #
|
|
# #
|
|
# This source code contains the intellectual property #
|
|
# of its copyright holder(s), and is made available #
|
|
# under a license. If you do not know the terms of #
|
|
# the license, please stop and do not read further. #
|
|
# #
|
|
#################################################################
|
|
|
|
# PAGE ,132
|
|
.title call_dm.s
|
|
.sbttl call_dm
|
|
.include "linkage.si"
|
|
|
|
# .386
|
|
# .MODEL FLAT, C
|
|
|
|
.DATA
|
|
|
|
.text
|
|
.extern op_oldvar
|
|
.extern opp_dmode
|
|
|
|
# PUBLIC call_dm
|
|
# call_dm PROC
|
|
ENTRY call_dm
|
|
l1: call opp_dmode
|
|
call op_oldvar
|
|
jmp l1
|
|
ret
|
|
# call_dm ENDP
|
|
|
|
# END
|