13.07.2015 Views

Turbo Basic

Turbo Basic

Turbo Basic

SHOW MORE
SHOW LESS
  • No tags were found...

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

403 $IF nesting overflow·Conditional compilation blocks ($IF/$ELSE/$ENDIF) can only be nestedup to 16 levels deep.404 $INCLUDE nesting overHowInclude files may be nested up to five levels deep, including the main programitself That allows the program to have four nested include files.405 Block nesting overflowYour program has too many statement block structures nested within eachother. <strong>Turbo</strong> <strong>Basic</strong> block structures may be nested 255 levels deep.406 Compiler out of memoryAvailable compiler memory for symbol space, buffers, and so on, has beenexhausted. If no more memory is available, separate your program into asmall main program that uses the $INCLUDE metastatement to include therest of your program. If you are compiling your program to memory and getthis error, try compiling the program to disk with the compiler Optionsmenu.407 Program too largeYour program contains more than 65,530 statements.408 Segment exceeds 64KYour program contains a segment that exceeds the 64K limitation. Add a$SEGMENT metastatement to your source program to force program codeinto another segment.409 Variables exceed 64KScalar variables are limited to 64K total space. In this space we includepointers to strings, integers, long integers, and single- and double-precisionreals. Get rid of any unused variables or split up your program into separateMain and CHAIN programs.410 "," expectedThe statement's syntax requires a comma (,).411 ";" expectedThe statement's syntax requires a semicolon (;).412 "(" expectedThe statement's syntax requires a right parenthesis (().413 ")" expectedThe statement's syntax requires a left parenthesis ( )).414 " =" expectedThe statement's syntax requires an equal sign (=).415 "-" expectedThe statement's syntax requires a hyphen (-).Error Messages 417

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!