X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Favr%2Fmain.c;h=efde4d2beaef53048b1dd4eb7b1471ae7c74d8be;hb=5a1d5e778e85664f4e6657019348b4756b16eacb;hp=c2ea6a0c73b9063700cfa7fb09d9afbf27482102;hpb=d0b75a25e014ff9924b4961e7927de9f591f5d0d;p=fw%2Fsdcc diff --git a/src/avr/main.c b/src/avr/main.c index c2ea6a0c..efde4d2b 100644 --- a/src/avr/main.c +++ b/src/avr/main.c @@ -126,9 +126,9 @@ _avr_genAssemblerPreamble (FILE * of) /* Generate interrupt vector table. */ static int -_avr_genIVT (FILE * of, symbol ** interrupts, int maxInterrupts) +_avr_genIVT (struct dbuf_s * oBuf, symbol ** interrupts, int maxInterrupts) { - return TRUE; + return TRUE; } /* Indicate which extended bit operations this port supports */ @@ -221,7 +221,10 @@ PORT avr_port = { "HOME", NULL, // initialized xdata NULL, // a code copy of xiseg - "CONST (CODE)", // const_name - const data (code or not) + "CONST (CODE)", // const_name - const data (code or not) + "CABS (ABS,CODE)", // cabs_name - const absolute data (code or not) + "XABS (ABS,XDATA)", // xabs_name - absolute xdata/pdata + "IABS (ABS,DATA)", // iabs_name - absolute idata/data NULL, NULL, 0,