FreeCalypso > hg > freecalypso-citrine
diff lldbg/cmd_w8.c @ 0:75a11d740a02
initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 09 Jun 2016 00:02:41 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lldbg/cmd_w8.c Thu Jun 09 00:02:41 2016 +0000 @@ -0,0 +1,26 @@ +/* + * w8 hexaddr xx -- write an 8-bit register or memory location + */ + +#include <sys/types.h> +#include "types.h" + +void +lldbg_cmd_w8(argbulk) + char *argbulk; +{ + char *argv[3]; + u_long addr, data; + + if (lldbg_parse_args(argbulk, 2, 2, argv, 0) < 0) + return; + if (lldbg_parse_hexarg(argv[0], 8, &addr) < 0) { + lldbg_printf("ERROR: arg1 must be a valid 32-bit hex address\n"); + return; + } + if (lldbg_parse_hexarg(argv[1], 2, &data) < 0) { + lldbg_printf("ERROR: arg2 must be a valid 8-bit hex value\n"); + return; + } + *(volatile u8 *)addr = data; +}