Re: [Sdcc-user] makebin generating gb binary format

2010-02-20 Thread Claude Sylvain
On 20/02/2010 13:20, Borut Razem wrote: > > Dear sdcc users and developers, > > in the first place those using sdcc for GameBoy target (is there anybody > using it at all?): > I am not using SDCC for GameBoy target, but I use it for Z80 targeted system. > > I enhenced the makebin utilit

[Sdcc-user] makebin generating gb binary format

2010-02-20 Thread Borut Razem
Dear sdcc users and developers, in the first place those using sdcc for GameBoy target (is there anybody using it at all?): I enhenced the makebin utility so that it can generate gb binary output file, same as -Z asldgb (gb linker) option. The goal is to remove the gb binary output file generat

Re: [Sdcc-user] Value of symbol differs on second pass -error

2010-02-20 Thread Bodo Wenzel
Sorry, on the first part I can't help you. > static data unsigned char at 0x100 *out_ptr; Without any try I think the "at" should be placed between the type and the symbol: static data unsigned char * at 0x100 out_ptr; HTH, Bodo