> Do you have any feelings on stack use and code efficiency?  Does 1K
> sound like I'll be pushing it?
> 

Ok, there are couple of issues on stack usage:

1. Stack being initialized with a RAM top when main() starts.

2. User can re-initialize a stack in a users' startup routine, or reserve
some space on a top of stack. 

3. Stack being used for a local frame when necessary (when no all local
vars fit into registers). 

4. Stack is always 2-bytes aligned. 

5. There are no redudant stack usage during subroutine call, exept ones
described in doc.txt.


Concerning TCP/IP port:
- The code area, including web page static data takes ~11.5K
- Global vars area is about 970 bytes.
- Max stack size required is 6 bytes in InsertDynamicValues().

cheers,
~d

/********************************************************************
     ("`-''-/").___..--''"`-._     (\   Dimmy the Wild      UA1ACZ
      `6_ 6  )   `-.  (     ).`-.__.`)  Enterprise Information Sys 
      (_Y_.)'  ._   )  `._ `. ``-..-'   Nevsky prospekt,   20 / 44
    _..`--'_..-_/  /--'_.' ,'           Saint Petersburg,   Russia
   (il),-''  (li),'  ((!.-'             +7 (812)  3468202, 5585314
 ********************************************************************/

Reply via email to