fis-gtm/sr_i386/op_gettruth.s

51 lines
918 B
ArmAsm

#################################################################
# #
# Copyright 2001 Sanchez Computer Associates, 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_gettruth.s
# .386
# .MODEL FLAT, C
.include "linkage.si"
.INCLUDE "mval_def.si"
.sbttl op_gettruth
# PAGE +
.DATA
.extern dollar_truth
.extern literal_one
.extern literal_zero
.text
# PUBLIC op_gettruth
ENTRY op_gettruth
pushl %edi
pushl %esi
cmpl $0,dollar_truth
jne l1
leal literal_zero,%esi
jmp doit
l1: leal literal_one,%esi
doit: movl %edx,%edi
movl $mval_byte_len,%ecx
REP
movsb
popl %esi
popl %edi
ret
# op_gettruth ENDP
# END