CodeLimit problem with ZX-328n

Discussion of issues related specifically to writing code for native mode devices. This includes ZBasic code as well as assembly language code and C code, both inline and standalone.
Post Reply
dkinzer
Site Admin
Posts: 3120
Joined: 03 September 2005, 13:53 PM
Location: Portland, OR

CodeLimit problem with ZX-328n

Post by dkinzer »

There is a configuration error in the compiler that causes it to believe that the code size limit for the ZX-328n is 14K rather than the actual limit of 30K. You can work around the problem by adding the option below to your .pjt file.

Code: Select all

--code-limit=30K
If you prefer, you can also use this:

Code: Select all

--code-limit=30720
- Don Kinzer
Post Reply