Gast
#829867
ich möchte in test3.s breckpoints stehlen. warum geht das nicht? ict das wegen asm-Depacker? AVR-GCC test3.S ____________________________ #include <avr/io.h> .global main .extern var1 main: call cfunc lds r16,var1 inc r16 sts var1,r16 out DDRB,r16 .end ________________________________ AVR GCC test1.C ________________________________ #include <inttypes.h> #include <avr/interrupt.h> volatile uint8_t var1; void cfunc(void) { while (var1<10){ var1++; } } ____________________________________ ATmega16