FreeCalypso > hg > freecalypso-sw
comparison target-utils/libcommon/cmd_jump.c @ 26:1a3bbab2ea26
loadagent: jump command implemented
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sat, 04 May 2013 05:38:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
25:796da8d60b23 | 26:1a3bbab2ea26 |
---|---|
1 /* | |
2 * jump hexaddr -- transfer control with BX | |
3 */ | |
4 | |
5 #include <sys/types.h> | |
6 #include "types.h" | |
7 | |
8 void | |
9 cmd_jump(argbulk) | |
10 char *argbulk; | |
11 { | |
12 char *argv[2]; | |
13 u_long addr; | |
14 | |
15 if (parse_args(argbulk, 1, 1, argv, 0) < 0) | |
16 return; | |
17 if (parse_hexarg(argv[0], 8, &addr) < 0) { | |
18 printf("ERROR: argument must be a valid 32-bit hex address\n"); | |
19 return; | |
20 } | |
21 serial_flush(); | |
22 asm volatile ("bx %0" : : "r" (addr)); | |
23 __builtin_unreachable(); | |
24 } |