User`s manual

MAE - Macro Edit
3-118
3
Line numbers serve one purpose: specifying the location within a
macro definition to perform the editing function. After the editing
is complete, the macro definition is displayed with a new set of line
numbers.
Examples
Example 1: Add a line to macro ABC.
List definition of macro ABC.
PPC1-Bug>MA ABC <Return>
MACRO ABC
010 MD 3000
020 GO \0
PPC1-Bug>
Then add a line to macro ABC.
PPC1-Bug>MAE ABC 15 RD <Return>
MACRO ABC
010 MD 3000
020 RD
030 GO \0
PPC1-Bug>
Example 2: Replace line 010 from macro ABC.
PPC1-Bug>MAE ABC 10 MD 10+Z0 <Return>
MACRO ABC
010 MD 10+Z0
020 RD
030 GO \0
PPC1-Bug>
Example 3: Remove the specified line from the macro ABC.
PPC1-Bug>MAE ABC 30 <Return>
MACRO ABC
010 MD 10+Z0
020 RD
PPC1-Bug>