Re: [Sdcc-user] SDCC pic14 inline asm variable aces

2014-01-07 Thread Gál Zsolt
Hello, For inline assembly better to use GLOBAL variables which takes place outside of all function and you can avoid renaming variables. Better choice not using inline assembly rather writing assembly code in a separate files. Then you can make LIBRARIES or simple link to the main program by an

Re: [Sdcc-user] SDCC pic14 inline asm variable aces

2014-01-06 Thread Maarten Brock
Hi, The numbers are the block level and a sequence number. But why don't you just invent your own local variables? Maarten > Hi! > I've started using SDCC (ver 3.3.0) to program 12F675. > As the standard library doesn't provide delay functions I try to make my > own ones. > However its hard to