mirror of
https://github.com/pevans/erc-c.git
synced 2024-12-13 15:33:17 +00:00
Fix table sort order
Otherwise bsearch() can't find the help command, which causes other problems later on
This commit is contained in:
parent
b8b45cc9f2
commit
7cc443206c
@ -38,10 +38,10 @@ apple2_debug_cmd cmdtable[] = {
|
||||
"Add breakpoint at <addr>", },
|
||||
{ "dblock", "db", apple2_debug_cmd_dblock, 2, "<from> <to>",
|
||||
"Disassemble a block of code", },
|
||||
{ "help", "h", apple2_debug_cmd_help, 0, "",
|
||||
"Print out this list of commands", },
|
||||
{ "hdump", "hd", apple2_debug_cmd_hdump, 2, "<from> <to>",
|
||||
"Hex dump memory in a given region", },
|
||||
{ "help", "h", apple2_debug_cmd_help, 0, "",
|
||||
"Print out this list of commands", },
|
||||
{ "hidump", "hid", apple2_debug_cmd_hidump, 1, "<file>",
|
||||
"Dump hires graphics memory to file", },
|
||||
{ "jump", "j", apple2_debug_cmd_jump, 1, "<addr>",
|
||||
|
Loading…
Reference in New Issue
Block a user