11.2Scgd# $NetBSD: L_ENTRY.AWK,v 1.2 1994/10/26 07:48:34 cgd Exp $ 21.2Scgd 31.1Smycroft# MOTOROLA MICROPROCESSOR & MEMORY TECHNOLOGY GROUP 41.1Smycroft# M68000 Hi-Performance Microprocessor Division 51.1Smycroft# M68040 Software Package 61.1Smycroft# 71.1Smycroft# M68040 Software Package Copyright (c) 1993, 1994 Motorola Inc. 81.1Smycroft# All rights reserved. 91.1Smycroft# 101.1Smycroft# THE SOFTWARE is provided on an "AS IS" basis and without warranty. 111.1Smycroft# To the maximum extent permitted by applicable law, 121.1Smycroft# MOTOROLA DISCLAIMS ALL WARRANTIES WHETHER EXPRESS OR IMPLIED, 131.1Smycroft# INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A 141.1Smycroft# PARTICULAR PURPOSE and any warranty against infringement with 151.1Smycroft# regard to the SOFTWARE (INCLUDING ANY MODIFIED VERSIONS THEREOF) 161.1Smycroft# and any accompanying written materials. 171.1Smycroft# 181.1Smycroft# To the maximum extent permitted by applicable law, 191.1Smycroft# IN NO EVENT SHALL MOTOROLA BE LIABLE FOR ANY DAMAGES WHATSOEVER 201.1Smycroft# (INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS 211.1Smycroft# PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR 221.1Smycroft# OTHER PECUNIARY LOSS) ARISING OF THE USE OR INABILITY TO USE THE 231.1Smycroft# SOFTWARE. Motorola assumes no responsibility for the maintenance 241.1Smycroft# and support of the SOFTWARE. 251.1Smycroft# 261.1Smycroft# You are hereby granted a copyright license to use, modify, and 271.1Smycroft# distribute the SOFTWARE so long as this entire notice is retained 281.1Smycroft# without alteration in any modified and/or redistributed versions, 291.1Smycroft# and that such modified versions are clearly identified as such. 301.1Smycroft# No licenses are granted by implication, estoppel or otherwise 311.1Smycroft# under any patents or trademarks of Motorola, Inc. 321.1Smycroft 331.1Smycroft# L_ENTRY.AWK 1.1 3/27/91 341.1Smycroft 351.1SmycroftBEGIN{ 361.1Smycroft print "echo \" section 8\"" 371.1Smycroft print "echo \" include l_fpsp.h\"" 381.1Smycroft print "echo \"\"" 391.1Smycroft print "echo \" xref tag\"" 401.1Smycroft print "echo \" xref szero\"" 411.1Smycroft print "echo \" xref sinf\"" 421.1Smycroft print "echo \" xref sopr_inf\"" 431.1Smycroft print "echo \" xref sone\"" 441.1Smycroft print "echo \" xref spi_2\"" 451.1Smycroft print "echo \" xref szr_inf\"" 461.1Smycroft print "echo \" xref src_nan\"" 471.1Smycroft print "echo \" xref t_operr\"" 481.1Smycroft print "echo \" xref t_dz2\"" 491.1Smycroft print "echo \" xref snzrinx\"" 501.1Smycroft print "echo \" xref ld_pone\"" 511.1Smycroft print "echo \" xref ld_pinf\"" 521.1Smycroft print "echo \" xref ld_ppi2\"" 531.1Smycroft print "echo \" xref ssincosz\"" 541.1Smycroft print "echo \" xref ssincosi\"" 551.1Smycroft print "echo \" xref ssincosnan\"" 561.1Smycroft print "echo \" xref setoxm1i\"" 571.1Smycroft utmp = 100 581.1Smycroft } 591.1Smycroft 601.1Smycroft$4=="MONADIC"{ 611.1Smycroft printf "sed 's/_OPs_/" $1 "/g' MONADIC." SYS " | " 621.1Smycroft printf "sed 's/_OPd_/" $2 "/g' | " 631.1Smycroft printf "sed 's/_OPx_/" $3 "/g' | " 641.1Smycroft printf "sed 's/_OPr_/" $5 "/g' | " 651.1Smycroft printf "sed 's/_OPz_/" $6 "/g' | " 661.1Smycroft printf "sed 's/_OPi_/" $7 "/g' | " 671.1Smycroft printf "sed 's/_OPn_/" $8 "/g' | " 681.1Smycroft printf "sed 's/_OPm_/" $9 "/g' | " 691.1Smycroft utmp += 1 701.1Smycroft printf "sed 's/_TMP_/" PREFIX utmp "/g'\n " 711.1Smycroft } 721.1Smycroft 731.1Smycroft$4=="DYADIC"{ 741.1Smycroft printf "sed 's/_OPs_/" $1 "/g' DYADIC." SYS " | " 751.1Smycroft printf "sed 's/_OPd_/" $2 "/g' | " 761.1Smycroft printf "sed 's/_OPx_/" $3 "/g' | " 771.1Smycroft printf "sed 's/_OPa_/" $5 "/g' | " 781.1Smycroft utmp += 1 791.1Smycroft printf "sed 's/_TMP_/" PREFIX utmp "/g'\n" 801.1Smycroft } 811.1Smycroft 821.1SmycroftEND{ 831.1Smycroft print "echo \" end\"" 841.1Smycroft } 85