#
#===================================================================
# This regular expression is for use with sed and will change
# the character string fpcr to fpcontrol
#
s/[Ff][Pp][Cc][Rr]/FPCONTROL/g
#
# This regular expression is for use with sed and will change
# the character string fpiar to fpiaddr
#
s/[Ff][Pp][Ii][Aa][Rr]/FPIADDR/g
#
#=====================================================================
# This one changes xref to refr ...
#
s/[Xx][Rr][Ee][Ff]/refr/
#
#=====================================================================
# This one changes xdef to def ...
#
s/[Xx][Dd][Ee][Ff]/def/
#
#=====================================================================
# This regular expression is for use with sed and will change
# the character string fpsr to fpstatus
#
s/[Ff][Pp][Ss][Rr]/FPSTATUS/g
# 
#=====================================================================
# will change bchg.l to bchg
#
s/[Bb][Cc][Hh][Gg]\.[Ll]/bchg/
# 
#=====================================================================
# bclr.l or bclr.b to bclr
#
#
s/[Bb][Cc][Ll][Rr]\.[BbLl]/bclr/
# 
#=====================================================================
# bset.l to bset
#
s/[Bb][Ss][Ee][Tt]\.[BbLl]/bset/
# 
#=====================================================================
# this file provides a regular expression that will change btst.b
# or btst.l to btst
#
s/[Bb][Tt][Ss][Tt]\.[BbLl]/btst/
#  
#=====================================================================
# lea.l to lea
#
s/[Ll][Ee][Aa]\.[Ll]/lea/
# 
#=====================================================================
# pea.l to pea
#
s/[Pp][Ee][Aa]\.[Ll]/pea/
# 
#=====================================================================
# swap.w to swap
#
s/[Ss][Ww][Aa][Pp]\.[Ww]/swap/
# 
#====================================================================
# dbf.w to dbf ...
#
s/[Dd][Bb][Ff]\.[Ww]/dbf/
# 
#====================================================================
# this file provides a regular expression that will change moveq.l
# to moveq
#
s/[Mm][Oo][Vv][Ee][Qq]\.[Ll]/moveq/
#
#===================================================================
# for converting the one line rd_usk macro :
# for adding the a6 register
#
/[Rr][Dd]_[Uu][Ss][Kk]\./s/,/(a6),/
#
/[Rr][Dd]_[Uu][Ss][Kk]\./s/[Rr][Dd]_[Uu][Ss][Kk]/move/
#
#===================================================================
# for converting the one line fp_usk macro :
# for adding the a6 register
#
/[Ff][Pp]_[Uu][Ss][Kk]\./s/,/(a6),/
#
/[Ff][Pp]_[Uu][Ss][Kk]\./s/[Ff][Pp]_[Uu][Ss][Kk]/fmove/
#
#
#===================================================================
# for converting the one line ad_usk macro :
#
# for adding the a6 register
#
/[Aa][Dd]_[Uu][Ss][Kk]\./s/,/(a6),/
#
/[Aa][Dd]_[Uu][Ss][Kk]\.[Ll]/s/[Aa][Dd]_[Uu][Ss][Kk]\.[Ll]/lea/
#
#
#===================================================================
# This regular expression is for use with sed and it
# removes any line from a file that begins with the word
# section, and has at least one blank or tab before and 
# after that word.
#
/^[ 	][ 	]*[Ss][Ee][Cc][Tt][Ii][Oo][Nn][ 	][ 	]*/d
#
#====================================================================
# This regular expression is for use with sed and it
# removes any line from a file that begins with the word
# nopage, and has at least one blank or tab before the word
#
/^[ 	][ 	]*[Nn][Oo][Pp][Aa][Gg][Ee]/d
#
#===================================================================
# Removes lines with IDNT in them.
#
/[I][D][N][T]/d
#
#===================================================================
# Removes lines with OPT CEX in them.
#
/[O][P][T][ ][C][E][X]/d
#
