Цитата(beer_warrior @ May 15 2006, 23:50)

Угловые скобки указывают на путь прописанный в PATH.
Кавычки - любой путь.
Не путайте .include и #include
.include - директива ассемблера, аргумент только в кавычках.
INCLUDE - Include another file
The INCLUDE directive tells the Assembler to start reading from a specified file. The Assembler then assembles the specified file until end of file (EOF) or an EXIT directive is encountered. An included file may itself contain INCLUDE directives.
Syntax:
.INCLUDE "filename"
#include - директива препроцессора, аргумент как в кавычках, так и в угловых скобках.
Syntax
#include "file"
#include <file>
Description
Include a file. The two forms differ in that (1) searches the current working directory first, and is functionally equivalent with the assembler .include directive. (2) does not search the current working directory. Both forms will search a built-in known place for include files supplied with the assembler.
It is strongly discouraged to use absolute pathnames in #include directives, as this makes it difficult to move projects between different directories/computers. Use the -I command-line option to specify the include path, or set ut up in AVR Studio - Project - Assembler Options.
С уважением.