mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-01 21:17:05 +03:00
7c539d8e19
git-svn-id: svn://kolibrios.org@6400 a494cfbc-eb01-0410-851d-a64ba20cac60
20 lines
332 B
C
20 lines
332 B
C
/***********************************************************************
|
|
*
|
|
* avra - Assembler for the Atmel AVR microcontroller series
|
|
*
|
|
* Copyright (C) 1998-2003 Jon Anders Haugum, Tobias Weber
|
|
*
|
|
* Misc stuff
|
|
*/
|
|
|
|
enum boolean {False = 0, True};
|
|
|
|
enum filetype
|
|
{
|
|
AVRSTUDIO = 0,
|
|
GENERIC,
|
|
INTEL,
|
|
MOTOROLA
|
|
};
|
|
|