53 lines
1.2 KiB
ArmAsm
53 lines
1.2 KiB
ArmAsm
#################################################################
|
|
# #
|
|
# Copyright 2007, 2009 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 op_fetchintrrpt.s
|
|
|
|
# .386
|
|
# .MODEL FLAT, C
|
|
|
|
.include "linkage.si"
|
|
.INCLUDE "g_msf.si"
|
|
|
|
.sbttl op_fetchintrrpt
|
|
# PAGE +
|
|
.DATA
|
|
.extern frame_pointer
|
|
.extern neterr_pending
|
|
|
|
.text
|
|
.extern gtm_fetch
|
|
.extern gvcmz_neterr
|
|
.extern outofband_clear
|
|
.extern async_action
|
|
|
|
# PUBLIC op_fetchintrrpt
|
|
ENTRY op_fetchintrrpt
|
|
movq frame_pointer(REG_IP),REG64_SCRATCH1
|
|
popq msf_mpc_off(REG64_SCRATCH1)
|
|
movq REG_PV, msf_ctxt_off(REG64_SCRATCH1)
|
|
movb $0,REG8_ACCUM # variable length argument
|
|
call gtm_fetch
|
|
cmpb $0,neterr_pending(REG_IP)
|
|
je l1
|
|
call outofband_clear
|
|
movq $0,REG64_ARG0
|
|
call gvcmz_neterr
|
|
l1: movl $1,REG32_ARG0
|
|
call async_action
|
|
movq frame_pointer(REG_IP),REG64_SCRATCH1
|
|
pushq msf_mpc_off(REG64_SCRATCH1)
|
|
ret
|
|
# op_fetchintrrpt ENDP
|
|
|
|
# END
|