diff -r vbcc/machines/hc12/machine.c vbcc-edited/machines/hc12/machine.c
2031a2032,2034
>   static char *dbgfile;
>   static int dbgline;
> 
2049a2053,2056
>   
>   dbgfile=0;
>   dbgline=0;
> 
2050a2058,2070
> 
>     if(debug_info){ // Add line and file to asm output
>       if(p->file&&p->line){
>         if(p->file!=dbgfile||p->line!=dbgline){
>           dbgfile=p->file;
>           dbgline=p->line;
>           fflush(f);
>           emit(f,"; %d \"%s\"\n",dbgline,dbgfile);
>           fflush(f);
>         }
>       }
>     }
> 
diff -r vbcc/Makefile vbcc-edited/Makefile
0a1
> TARGET = hc12
diff -r vbcc/opt.h vbcc-edited/opt.h
2c2
< 
---
> #include <stdint.h>
