FreeCalypso > hg > freecalypso-sw
view target-utils/libcommon/cmd_jump.c @ 1032:6e7dd5e52650
gsm-fw feature tch-reroute: B_PLAY_UL (uplink substitution) bug fixed
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Wed, 01 Jun 2016 01:24:15 +0000 |
| parents | 1a3bbab2ea26 |
| children |
line wrap: on
line source
/* * jump hexaddr -- transfer control with BX */ #include <sys/types.h> #include "types.h" void cmd_jump(argbulk) char *argbulk; { char *argv[2]; u_long addr; if (parse_args(argbulk, 1, 1, argv, 0) < 0) return; if (parse_hexarg(argv[0], 8, &addr) < 0) { printf("ERROR: argument must be a valid 32-bit hex address\n"); return; } serial_flush(); asm volatile ("bx %0" : : "r" (addr)); __builtin_unreachable(); }
