Am 18.11.20 um 23:10 schrieb Karsten Langeloh:
> Hello everyone,
>
> no this is not the "how do i do interrupts with sdcc" question :)
> I have used sdas-stm8 in the past to convert some "old" projects from
> STVD to something more usable (aka Makefiles and git) and it worked
> great.
>
> For ano
Hi,
On STM8, I believe the interrupt table will only ever be as large as the
highest IRQ number being handled - e.g. if you define no interrupt
handlers in your code, then the table will only contain two entries for
reset and trap; if you have a TIM4 handler, then it will be 26 entries;
and s
Hello everyone,
no this is not the "how do i do interrupts with sdcc" question :)
I have used sdas-stm8 in the past to convert some "old" projects from
STVD to something more usable (aka Makefiles and git) and it worked
great.
For another project I would like to stay away from assembler coding so