Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /***********************************************************************
  2.  *
  3.  *  avra - Assembler for the Atmel AVR microcontroller series
  4.  *
  5.  *  Copyright (C) 1998-2003 Jon Anders Haugum, Tobias Weber
  6.  *
  7.  * Misc stuff
  8.  */
  9.  
  10. enum boolean {False = 0, True};
  11.  
  12. enum filetype
  13. {
  14.     AVRSTUDIO = 0,
  15.     GENERIC,
  16.     INTEL,
  17.     MOTOROLA
  18. };
  19.  
  20.