blinking problem
Alex,
It looks like you have a really huge file, or that you are linking in a
LOT of code from a library somewhere.
You need the CODE=FAR option on V6 or the -b0 option on V5. When you use
these options, you'll need to make sure to link with the "nb" versions of the
libraries. With V6, you can accomplish this most easily by linking with the
SC command and providing the CODE=FAR option when you do it. With V5, you
can also link with LC (although it's not as nice as SC), or you can hand-code
the library lists.
This stuff is covered in both the V5 and the V6 manuals, although it's a
little easier to find in the V6 manuals. In V6, check the Library Reference
Manual, one of the first few chapters.
–Doug