FreeCalypso > hg > freecalypso-tools
view target-utils/libcommon/cmd_jump.c @ 62:2dd9dbe3f4a7
rvinterf tree: exitcodes.h moved from etmsync to include
so that the same exit code convention can be used in fc-shell and fc-tmsh
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 26 Oct 2016 21:36:07 +0000 |
parents | e7502631a0f9 |
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(); }