1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

Added .a65 as an assembler extension

git-svn-id: svn://svn.cc65.org/cc65/trunk@315 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-09-02 11:52:14 +00:00
parent 8198af9844
commit a41de0ea3f

View File

@ -134,6 +134,7 @@ static unsigned GetFileType (const char* File)
{ ".c", FILETYPE_C },
{ ".s", FILETYPE_ASM },
{ ".asm", FILETYPE_ASM },
{ ".a65", FILETYPE_ASM },
{ ".o", FILETYPE_OBJ },
{ ".obj", FILETYPE_OBJ },
{ ".a", FILETYPE_LIB },