On C167CR I have created a project witch Dave2.1 and I have 20 address lines (A0..A19). I want to compile but uVision does not leave me compile more than 64K. How can I simulate before reset configuration pull-down resistors with uVision and so create a good H86 for my number of address lines. Thanks!!
Here are 2 things that I notice about application. 1. Only use LARGE model if you use a 80C166 device. For all other C16x devices use the HLARGE model. It is more efficient. 2. It sounds like you have a single C file that generates more than 64K of code. The description for the error message is pretty descriptive: Code size exceeds 64K The maximum code size per module is 64K bytes. Jon
Thank you very much!! I have splitted the code into two files and I have a correct compilation.