help dreg cmd fix

This commit is contained in:
Stanislav Shwartsman 2009-12-30 19:20:27 +00:00
parent 631a806036
commit 1c68cb8243
2 changed files with 556 additions and 540 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: parser.y,v 1.43 2009-12-28 13:44:31 sshwarts Exp $
// $Id: parser.y,v 1.44 2009-12-30 19:20:27 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
%{
@ -1049,6 +1049,11 @@ help_command:
dbg_printf("creg - show control registers\n");
free($1);free($2);
}
| BX_TOKEN_HELP BX_TOKEN_DEBUG_REGS '\n'
{
dbg_printf("dreg - show debug registers\n");
free($1);free($2);
}
| BX_TOKEN_HELP BX_TOKEN_SETPMEM '\n'
{
dbg_printf("setpmem <addr> <datasize> <val> - set physical memory location of size 'datasize' to value 'val'\n");