mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
417 B
19 lines
417 B
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
#include "..\help.c"
|
|
|
|
|
|
|
|
VOID
|
|
SpecificHelp (
|
|
VOID
|
|
)
|
|
{
|
|
dprintf("\n");
|
|
dprintf("PPC-specific:\n\n");
|
|
dprintf("ex [base] - Dump the exception frame\n");
|
|
dprintf("pte - Dump the corresponding PDE and PTE for the entered address\n");
|
|
dprintf("trap [base] - Dump trap frame\n");
|
|
dprintf("\n");
|
|
}
|