FreeCalypso > hg > freecalypso-tools
comparison target-utils/libcommon/cmd_jump.c @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sat, 11 Jun 2016 00:13:35 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:e7502631a0f9 |
|---|---|
| 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 } |
