Call frames, Ee the, Call – Zilog Z8F0130 User Manual
Page 224: Frames, S, see the, Large memory model

Using the ANSI C-Compiler
UM013037-1212
200
Zilog Developer Studio II – Z8 Encore!
User Manual
printf()
usually cannot be used with the small model because the stack grows too large
and corrupts the data.
Large Memory Model
In the large memory model, global variables are allocated in the EData address space. The
address of these variables is 16 bits. The locals and parameters are allocated on the stack,
which is also located in the EData address space. The address of a local or parameter is a
16-bit address. Global variables can be manually placed into the RData or ROM address
space by using the address specifiers
near
or
rom
, respectively. Local (nonstatic) vari-
ables and parameters are always allocated in the EData address space, and any address
specifiers used in their declarations are ignored.
If you are forced to use the large model because of your data space and stack requirements,
you can still get some of the benefit of the more efficient code that is typical of the small
model. To do so, carefully choose the most frequently used global or static variables and
declare them
near
. This helps with both code size and even more so with execution speed
because more frequently executed code is more efficient.
One way of minimizing the amount of data space (RData and EData) your application
needs is to allocate a single buffer in data space to hold, for example, the largest of a num-
ber of strings you might need to display. The numerous strings are stored permanently in
ROM, where space is often less limited. Each string, in turn, is then copied from ROM to
data space at the moment when it is needed.
Another way of saving space when data space (RData and EData) is at a premium is to
declare initialized tables that are not modified in the code with the
rom
keyword. The
trade-off here is that the execution speed is likely to be somewhat slower because the num-
ber of addressing modes available to the compiler for accessing
rom
variables is very
small.
Call Frames
Call frames hold the arguments, local variables, and other pertinent information of an
instantiation of a procedure or function at a time. The Zilog Z8 Encore! C-Compiler sup-
ports two types of call frames:
•
•
Note:
- Z8F0131 Z8F0230 Z8F0231 Z8F0430 Z8F0431 Z8F043A Z8F0830 Z8F0831 Z8F083A Z8F1232 Z8F1233 Z8F0113 Z8F011A Z8F0123 Z8F012A Z8F0213 Z8F021A Z8F0223 Z8F022A Z8F0411 Z8F0412 Z8F0413 Z8F041A Z8F0421 Z8F0422 Z8F0423 Z8F042A Z8F0811 Z8F0812 Z8F0813 Z8F081A Z8F0821 Z8F0822 Z8F0823 Z8F082A Z8F0880 Z8F1621 Z8F1622 Z8F1680 Z8F1681 Z8F1682 Z8F2421 Z8F2422 Z8F2480 Z8F3221 Z8F3222 Z8F3281 Z8F3282 Z8F4821 Z8F4822 Z8F4823 Z8F6081 Z8F6082 Z8F6421 Z8F6422 Z8F6423 Z8F6481 Z8F6482 Z8FS021A ZMOT1AHH Z8FS040B ZMOT0BHH ZMOT0BSB Z8FMC04 Z8FMC08 Z8FMC16