FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/lldbg/cmd_w16.c @ 865:f5affe83ba2d
lldbg hack (poor girl's substitute for JTAG) implemented
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Fri, 15 May 2015 00:02:03 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
864:4fa939eada22 | 865:f5affe83ba2d |
---|---|
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 } |