2022-05-13 00:10:24 +02:00
|
|
|
; jump command
|
|
|
|
|
|
|
|
monitor_shell_jump_command_string: data.str "jump" data.8 0
|
|
|
|
|
|
|
|
monitor_shell_jump_command:
|
|
|
|
call monitor_shell_parse_arguments
|
|
|
|
mov r1, 16
|
|
|
|
call string_to_int
|
|
|
|
|
|
|
|
; r0: address
|
|
|
|
|
|
|
|
call r0
|
|
|
|
|
2022-09-02 23:24:46 +02:00
|
|
|
call redraw_monitor_console
|
|
|
|
|
2022-05-13 00:10:24 +02:00
|
|
|
ret
|