<<< The LOCAL directive | Index | Procedure Prototypes >>> |
The assembler does not initialize local variables - program must perform any necessary initializations.
For example, the following code fragment sets up a local array of bytes and initializes array to zero: local_array.asm
Note: assembler translates variables names into EBP offsets, so the local variables are not visible outside the procedure.
<<< The LOCAL directive | Index | Procedure Prototypes >>> |