;
MACRO -- Defines a sequence of DEBUG commands that you can invoke using a
debugger-name. In other words, you use MACRO to name an action-list.
Once named, you can call the action-list just as you would call
any other DEBUG command.
> MACRO `m1 [EXAMINE ponce] (Create a macro named `m1. All macro names
must begin with an accent grave (`).)
> `m1 (Invoke macro `m1.)
TEST\ponce = 27
> MACRO `sgo [EXAMINE x; IF x < 0 [SET x = 0]; GO] (Create macro `sgo.)
> `sgo (Invoke macro `sgo.)