[Sdcc-user] SDCC history

2010-08-05 Thread Borut Razem
HI sdcc users and developers, I created a new page on sdcc wiki: SDCC history at https://sourceforge.net/apps/trac/sdcc/wiki/SDCC%20history, containing some info I received from Sandeep. If anybody has anything to add, don't hesitate to do it. Borut --

Re: [Sdcc-user] What is the correct way of Declare Prototypes of ISR ? seem to be some confusion and resulting problems

2010-08-05 Thread Maarten Brock
Hi, At least put the prototype in (an include of) the file that contains main(). This is where the ISR table is filled. When you use an included header file I consider it good practice to also include it where the function is implemented so the compiler can check the prototype for being an i

[Sdcc-user] What is the correct way of Declare Prototypes of ISR ? seem to be some confusion and resulting problems

2010-08-05 Thread gazs
Hi Folks What is the correct way of Declare Prototypes of ISR ? Is it only in the file that contains main() or file that has main() and file that contain ISR routine it self or every file that is compiled and linked to for the runtime object ? void Timer0_ISR(void) interrupt 1 using 2; vo