1 i\
/*\
\ * values.h - #defines constants found in ../microcode/constants\
\ * Contains all constants accessible to the user with 9 bit mapped addresses\
\ *\
\ * Note that value.h is created via\
\ * sed -f get_validation_file ../microcode/constants > values.h\
\ * and thus need not be under SCCS.\
\ */\

/^[/ *	]/d
s/^\(s.*\)	\(.*\)	\(.*\)$/#define \1 0x\3/
s/^\(d.*\)	\(.*\)	\(........\)\(........\)$/#define \1 0x\3,0x\4/
s/^\(c_s.*\)	\(.*\)	\(.*\)$/#define \1 0x\3/
s/^\(c_d.*\)	\(.*\)	\(........\)\(........\)$/#define \1 0x\3,0x\4/
