From 533d942ed4aebf90bd01c6d870e3d5ce7b7d66a0 Mon Sep 17 00:00:00 2001 From: midipix Date: Apr 04 2016 22:32:09 +0000 Subject: compile mode: added .asm as a recognized source suffix. --- diff --git a/src/logic/slbt_exec_ctx.c b/src/logic/slbt_exec_ctx.c index 141a621..706fd51 100644 --- a/src/logic/slbt_exec_ctx.c +++ b/src/logic/slbt_exec_ctx.c @@ -46,6 +46,7 @@ static char * slbt_source_file(char ** argv) if ((ch = strrchr(*parg,'.'))) if ((!(strcmp(++ch,"s"))) || (!(strcmp(ch,"S"))) + || (!(strcmp(ch,"asm"))) || (!(strcmp(ch,"c"))) || (!(strcmp(ch,"cc"))) || (!(strcmp(ch,"cxx"))))