Search found 586 matches

by octal
Mon Jan 22, 2007 4:26 pm
Forum: Compiler
Topic: Where to find the list of bugs ?
Replies: 1
Views: 2162

Where to find the list of bugs ?

Hi, can we have anywhere the list of known bugs or issues with sfCompiler ? I think this will help a lot in some situations. I hope that the integration to mpLab or the integration of any kind of ICD will be done quickly, because without such tools it"s very difficult to step in programs to see what...
by octal
Sun Jan 21, 2007 9:47 am
Forum: Modules
Topic: USB support ?
Replies: 9
Views: 6601

USB support ?

Hi David, sorry to post again about USB, but when ca we expect it to be ready? Can I have the beta version ? I'm making a serial chips programmer and have (re)written most of the routine in SF Basic, and my programmer is working fine, but I'm communication with it using RS232 and I would like to do ...
by octal
Fri Jan 19, 2007 4:34 pm
Forum: Compiler
Topic: MPLab integration and ICD use ?
Replies: 1
Views: 2237

Sorry, it seems to has been already posted/discussed in the IDE section !!!
best regards
by octal
Fri Jan 19, 2007 4:10 pm
Forum: Compiler
Topic: MPLab integration and ICD use ?
Replies: 1
Views: 2237

MPLab integration and ICD use ?

Hi,
Is there a mean to use ICD2 with sfwCompiler ? is there any plugin for mpLab ?

Kind regards
Octal
by octal
Thu Jan 18, 2007 11:59 am
Forum: Compiler
Topic: What does Access modifier do ?
Replies: 2
Views: 2344

Ok thank you David.
Best regards
by octal
Thu Jan 18, 2007 11:38 am
Forum: Compiler
Topic: What does Access modifier do ?
Replies: 2
Views: 2344

What does Access modifier do ?

What does ACCESS modifier do before the name of a sub ?

Best regards
by octal
Thu Jan 18, 2007 11:20 am
Forum: Compiler
Topic: Call a User Definced Function from ASM code
Replies: 3
Views: 2866

Thank you David, but this does not answer to my first question.

Intead of calling my sub using RCALL in asm, can I simply close the asm bloc, call mu sub with parameter, and reopen the asm bloc ?
is that correct ?

Best regards
by octal
Thu Jan 18, 2007 10:31 am
Forum: Compiler
Topic: Call a User Definced Function from ASM code
Replies: 3
Views: 2866

Call a User Definced Function from ASM code

Hi, Actually, in ASM blocs we can call a user defined Sub sub MyCallingSubroutine(myParam as Byte) ... ; set Bit value... movf DataPort, W andwf MakeLow, W btfsc STATUS, C iorwf MakeHigh, W movwf DataPort ;>>>>>>> THE CALL TO MY SWFBasic Subroutine rcall MyUserSubroutine ;>>>>>>> THE CALL TO MY FUNC...
by octal
Wed Jan 17, 2007 12:45 pm
Forum: Compiler
Topic: Compiler Command Line Options
Replies: 5
Views: 3551

Sorry for being so curious ... but when can we excpect command line compiling possible ? I'm writing a new IDE for SFCompiler ... an IDE of a new kind ;) I have a new idea on about the way we are writing programs for PIC and I think that my IDE will make programmers more productive using SFCompiler ...
by octal
Wed Jan 17, 2007 12:27 pm
Forum: Compiler
Topic: Compiler Command Line Options
Replies: 5
Views: 3551

Hi David, thank you for your quick response. I have two other questions: 1- The fact that there is no command line options, does this mean that to compile a file using the command line compiler we have only to pass the main file to the compiler ? is there any ERROR output file ? 2- Is it possible to...
by octal
Wed Jan 17, 2007 11:18 am
Forum: Compiler
Topic: How do we manage Errros ?
Replies: 2
Views: 2430

i was thinking about that. I know that need a lot of overhead. The best solution, I think is the check raanges and params in every routine ... But it would be nice to have such tools (like range checking) for debug for example (like the code inserted when we use ICD) and to remove it in release vers...
by octal
Wed Jan 17, 2007 11:15 am
Forum: Compiler
Topic: Compiler Command Line Options
Replies: 5
Views: 3551

Compiler Command Line Options

Hi,
is there any doc about the compiler command line options ? what are the parameters recognized by the SESwordfishICC.exe compiler ?

Best regards
by octal
Wed Jan 17, 2007 10:56 am
Forum: Compiler
Topic: How do we manage Errros ?
Replies: 2
Views: 2430

How do we manage Errros ?

How can we Trap Errors ?
- is there any On Error Goto/Gosub ???
- or any Try/Catch construct ?


Best regards
by octal
Thu Jan 11, 2007 4:25 pm
Forum: Compiler
Topic: can we use absolute keyword ? USB support ???
Replies: 6
Views: 5035

Hi, thank you David ... Great ... USB is very urgent for my devs ... if it's ready I'll buy a copy of this great compiler. If you want, I can test USB module for you in my projects. I'm doing USB using Microchip C18 for about 8 months and I think that I have enought experience with it. For the routi...
by octal
Thu Jan 11, 2007 3:41 pm
Forum: Compiler
Topic: can we use absolute keyword ? USB support ???
Replies: 6
Views: 5035

can we use absolute keyword ? USB support ???

Hi, i have some questions to David : 1- can we use the ABSOLUTE keyword like this TBLPTRU as byte absolute $0FF8 (code from include files) in order to force a variable to be at certain address ? 2- Can we force the compiler to put a subroutine at specific address ? something like sub mySubroutine (....