comparison lldbg/cmd_w16.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
comparison
equal deleted inserted replaced
-1:000000000000 0:75a11d740a02
1 /*
2 * w16 hexaddr xxxx -- write a 16-bit register or memory location
3 */
4
5 #include <sys/types.h>
6 #include "types.h"
7
8 void
9 lldbg_cmd_w16(argbulk)
10 char *argbulk;
11 {
12 char *argv[3];
13 u_long addr, data;
14
15 if (lldbg_parse_args(argbulk, 2, 2, argv, 0) < 0)
16 return;
17 if (lldbg_parse_hexarg(argv[0], 8, &addr) < 0) {
18 lldbg_printf("ERROR: arg1 must be a valid 32-bit hex address\n");
19 return;
20 }
21 if (addr & 1) {
22 lldbg_printf("ERROR: unaligned address\n");
23 return;
24 }
25 if (lldbg_parse_hexarg(argv[1], 4, &data) < 0) {
26 lldbg_printf("ERROR: arg2 must be a valid 16-bit hex value\n");
27 return;
28 }
29 *(volatile u16 *)addr = data;
30 }