[Sdcc-user] Java frontend for SDCC

2008-06-05 Thread David Henningsson
Hello, as a part of a bachelor's thesis in computer science, I've been experimenting with creating a different frontend for SDCC. In short, I've split SDCC in half, removing the AST stuff, and created new functions for creating iCode instructions, operands and sym_links (the SDCC equivalent of typ

Re: [Sdcc-user] Problem compiling with pic 18f

2008-06-05 Thread Olgierd Eysymontt
I think you should do : main() { ... foo((unsigned char)133); ... } becasue SDCC asume that 133 is an integer, with the cast you should solve the problem. Cheers, Olgierd 2008/6/3 Cyberalex <[EMAIL PROTECTED]>: > I'm using a pin 18f1220 and i have to make some function with > parameters but t

[Sdcc-user] simulating

2008-06-05 Thread Get Started
I tried to simulate (PICSim IDE, Oshonsoft) the hex file, but I got "Hardware stack overflow" #include "pic16f84.h" void main() { TRISB = 0; for (;;) { PORTB = 0; PORTB = 1; } } " \sdcc\bin\sdcc.exe" --vc -mpic14 -p16f84 blinkled.c Thanks

Re: [Sdcc-user] [sdcc-devel] GPSIM is dead? and how to add support for new pic (PIC16F690)

2008-06-05 Thread Scott Dattalo
> Hello the gpsim project is dead? No. However development (at least from me) has drastically slowed in recent months. Scott - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for j

[Sdcc-user] GPSIM is dead? and how to add support for new pic (PIC16F690)

2008-06-05 Thread nick83ola
Hello the gpsim project is dead? I want to develop a project in linux and I need a simulator, but gpsim support too few processor for my need. I don't want to zap with virtualbox in and out of windows to debug code... And if it's dead, anyone want to start a new simulator engine in python? Anoth