diff options
| author | Keith Packard <keithp@keithp.com> | 2009-01-25 08:38:48 -0800 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2009-01-25 08:38:48 -0800 | 
| commit | 3cc8d11eb8d5d0b42141dd84a58d461287f59e3a (patch) | |
| tree | 11702b387bff81165f4f4f5832a627414a48fdf3 /s51/s51-parse.c | |
| parent | 60940b4be23962db79b8e914ec943d0636dd68ad (diff) | |
Support 'set' command
The 'set' command modifies target memory and registers
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 's51/s51-parse.c')
| -rw-r--r-- | s51/s51-parse.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/s51/s51-parse.c b/s51/s51-parse.c index 749d7bd8..aba45485 100644 --- a/s51/s51-parse.c +++ b/s51/s51-parse.c @@ -27,8 +27,8 @@ static struct command_function functions[] = {  		"Dump sprs\n" },  	{ "dx",	    "dx", command_dx,	"dx <start> <end>",  		"Dump xaddr\n" }, -	{ "set",    "t",  command_set,	"se[t] mem <prefix> <start> <end>", -		"Set mem {xram|rom|iram|sfr} <start> <end>\n" +	{ "set",    "t",  command_set,	"se[t] mem <prefix> <address> <data> ...", +		"Set mem {xram|rom|iram|sfr}\n"  		"set bit <addr>\n" },  	{ "dump",   "d",  command_dump,	"[d]ump <prefix> <start> <end>",  		"Dump {xram|rom|iram|sfr} <start> <end>\n" }, | 
