From a11e5713d7b7a0ed6b5dfdc41ab115f9eed6a4d6 Mon Sep 17 00:00:00 2001 From: Volker Ruppert Date: Tue, 24 Apr 2012 17:48:38 +0000 Subject: [PATCH] - updated help texts --- bochs/bx_debug/parser.y | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bochs/bx_debug/parser.y b/bochs/bx_debug/parser.y index ced04f79a..d6dbb5215 100644 --- a/bochs/bx_debug/parser.y +++ b/bochs/bx_debug/parser.y @@ -110,7 +110,6 @@ %token BX_TOKEN_WHERE %token BX_TOKEN_PRINT_STRING %token BX_TOKEN_NUMERIC -%token BX_TOKEN_NE2000 %token BX_TOKEN_PAGE %token BX_TOKEN_HELP %token BX_TOKEN_CALC @@ -1054,7 +1053,7 @@ help_command: } | BX_TOKEN_HELP BX_TOKEN_WRITEMEM '\n' { - dbg_printf("setpmem - dump 'len' bytes of virtual memory starting from the linear address 'laddr' into the file\n"); + dbg_printf("writemem - dump 'len' bytes of virtual memory starting from the linear address 'laddr' into the file\n"); free($1);free($2); } | BX_TOKEN_HELP BX_TOKEN_SETPMEM '\n' @@ -1132,9 +1131,9 @@ help_command: dbg_printf("info tab - show page tables\n"); dbg_printf("info eflags - show decoded EFLAGS register\n"); dbg_printf("info symbols [string] - list symbols whose prefix is string\n"); - dbg_printf("info ne2000 - show NE2000 registers\n"); dbg_printf("info device - show list of devices supported by this command\n"); - dbg_printf("info device [string]- show state of device specified in string\n"); + dbg_printf("info device [string] - show state of device specified in string\n"); + dbg_printf("info device [string] [string] - show state of device with options\n"); free($1);free($2); } | BX_TOKEN_HELP BX_TOKEN_SHOW '\n'