Browse Source

* 32k is the limit for parameters on the motorola, so suggestion of
limiting to 32k is done.

carl 27 years ago
parent
commit
8c2b6eadec
1 changed files with 2 additions and 1 deletions
  1. 2 1
      docs/ref.tex

+ 2 - 1
docs/ref.tex

@@ -2919,7 +2919,8 @@ by the compiler itself)
 
 
 Take care that using value parameters makes heavy use of the stack,
 Take care that using value parameters makes heavy use of the stack,
 especially if you pass large parameters. The total size of all parameters in
 especially if you pass large parameters. The total size of all parameters in
-the formal parameter list can only be 64K (on an Intel machine).
+the formal parameter list should be below 32K for portability's sake (the
+Intel version limits this to 64K).
 
 
 You can pass open arrays as value parameters. See \sees{openarray} for
 You can pass open arrays as value parameters. See \sees{openarray} for
 more information on using open arrays.
 more information on using open arrays.