ATmega169P Datasheet
                      Instruction Set Summary on Page 377 of Datasheet PDF
                      
AVR ASM Include File 
                      
                      - change .equ format,
 example:
                               .equ SRAM_START = 0x0100 
 should become
  .equ SRAM_START , 0x0100 
 
 
- repace .def with #define,
 example:
                               .def tempReg = r16
 should become
  #define tempReg r16 
 
 
- Untested, partially converted include file
 
			  m169pdef_untested.inc 
 ,
			  usedsed 's/\.equ\(.*\)=\(.*\)/.equ\1,\2/g' m169pdef.inc | sed 's/\.def\(.*\)=\(.*\)/#define \1 \2/g' > m169pdef_untested.inc