User manual
Monitor12 (MON12) User Manual 05/30/01
18
MOVE - MOVE MEMORY CONTENTS
MOVE <address1> <address2> [<destination>]
where:
<address1> Memory starting address.
<address2> Memory ending address.
[<dest>] Destination starting address (optional).
The MOVE command allows the user to copy/move memory to new memory location. If
the destination is not specified, the block of data residing from address1 to
address2 will be moved up one byte. Using the MOVE command on EEPROM locations
will program EPROM cells.
The MOVE command is useful when programming EEPROM. As an example, a program is
loaded in user RAM using the LOAD command, debugged using the monitor, and then
programmed into EEPROM with the MOVE command (note addressing must be relative).
No messages will be displayed on the terminal CRT upon completion of the copy /
move operation, only the prompt is displayed.
EXAMPLE DESCRIPTION
>MOVE E000 E7FF 0200 Move data from locations $E000-$E7FF to
locations $0200-$09FF.
>
P - PROCEED FROM BREAKPOINT
This command is used to proceed or continue program execution without having to
remove assigned breakpoints. This command is used to bypass assigned
breakpoints in a program executed by the G command.
NOTE
Breakpoints have been inserted at locations $0205 and $0207 for example.
EXAMPLE DESCRIPTION
>G 0200S Start execution at 0200.
P-0205 Y-7982 X-FF00 A-44 B-70 C-DO S-004A Breakpoint encountered at
> 0205.
>P Continue execution.
P-0207 Y-7982 X-FF00 A-44 B-70 C-C0 S-004A Breakpoint encountered at
0207
>