Hey all,
Error: Value of 716162 too large for field of 2 bytes at 0x81dfa
Actually on further inspection, it looks like the Palm architecture limits code segments to 64k max, and clearly the code Gambit C will produce is going to be unavoidably bigger. There's presumably some way of breaking it into multiple segments, but it seems like a right headache so I'll leave it for now.
Sorry for the noise!
Oisín
Afficher les réponses par date
Oisín Mac Fhearaí wrote:
Error: Value of 716162 too large for field of 2 bytes at 0x81dfa
Actually on further inspection, it looks like the Palm architecture limits code segments to 64k max, and clearly the code Gambit C will produce is going to be unavoidably bigger. There's presumably some way of breaking it into multiple segments, but it seems like a right headache so I'll leave it for now.
Multilink might help you out a lot here... http://www.djw.org/product/palm/multilink/index.html
(As I remember it, it splits your code up into segments automatically.)
Good luck, Blake.
2008/12/14 Blake Winton bwinton@latte.ca:
Multilink might help you out a lot here... http://www.djw.org/product/palm/multilink/index.html
(As I remember it, it splits your code up into segments automatically.)
Wow, good call! Will see if I can hook it up with my gsc build :)
thanks, Oisín