I have a program which works fine in small memory model. The program is growing beyond the 2K boundary and I want to switch to the Large model. When I switch to large model, the program stops working. I also tried it with a working code which is less than 2K. The only thing I do is set the memory model to large 64K code. Am I supposed to do anyting else? Thanks. -sam
""LARGE" does not make sense, "ROM LARGE" might. And he does post "memory model"" Yes, and then he posted: "Problem solved. My bad, confusing memory model with code size. Thanks" Please read the thread carefully from the beginning.
OH, missed that.
Sorry for all the confusion. I was setting memory model to large in order to use more than 2K of ROM. However, this affects the ram size as well and tries to use non-existent ram (external ram). So the program would work on the emulator and not when I burned a chip. I guess the emulator has the external RAM. Instead I need to set the ROM size to either compact or large and leave memory model as small. I realy appreciate everyone's help. -sam