FreeCalypso > hg > freecalypso-tools
view target-utils/libcommon/cmd_w16.c @ 926:6a0aa8d36d06
rvinterf backslash escape: introduce libprint
The new helper function library named libprint is meant to replace
the badly misnamed libg23, and will soon contain functions for
printing all of the same kinds of GPF TST packets that are now handled
in libg23. However, we are also moving safe_print_trace() from libasync
to this new library, and changing it to emit our new backslash escape
format.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 23 May 2023 03:47:46 +0000 |
parents | e7502631a0f9 |
children |
line wrap: on
line source
/* * w16 hexaddr xxxx -- write a 16-bit register or memory location */ #include <sys/types.h> #include "types.h" void cmd_w16(argbulk) char *argbulk; { char *argv[3]; u_long addr, data; if (parse_args(argbulk, 2, 2, argv, 0) < 0) return; if (parse_hexarg(argv[0], 8, &addr) < 0) { printf("ERROR: arg1 must be a valid 32-bit hex address\n"); return; } if (addr & 1) { printf("ERROR: unaligned address\n"); return; } if (parse_hexarg(argv[1], 4, &data) < 0) { printf("ERROR: arg2 must be a valid 16-bit hex value\n"); return; } *(volatile u16 *)addr = data; }