|
EGTAPI provide display options to show static variables that have been defined using the ds or the dc M68000 directives
|
Example: suppose you have the following fragment of assembler code with 2 lables A and B:
.global A .... A: .skip 4 B: .skip 4 .... |
The EGTAPI can access the variable A (because it has been .global-ed) but may not be able to access the variable B (I say "may" because some assembler will also make B available, but there is no guarantee that it will always work)
|