Windows NT 4.0 source code leak
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.

41 lines
2.0 KiB

4 years ago
  1. #include "precomp.h"
  2. #pragma hdrstop
  3. #include "..\help.c"
  4. VOID
  5. SpecificHelp (
  6. VOID
  7. )
  8. {
  9. dprintf("\n");
  10. dprintf("ALPHA-specific:\n\n");
  11. dprintf("pte Dump the corresponding PDE and PTE for the entered address\n");
  12. dprintf("prcb [processor] Dump the PRCB\n");
  13. dprintf("pcr [processor] Dump the PCR\n");
  14. dprintf("dpc Dump the DPC flag\n");
  15. dprintf("teb Dump the TEB\n");
  16. dprintf("context [addr] Dump a Context structure\n");
  17. dprintf("readyq [pri] Dump the ready queue\n");
  18. dprintf("waitq [number] Dump the wait queues (#:reason)\n");
  19. dprintf("waitreasons [number] Give wait reason/number mapping\n");
  20. dprintf("trap [base] Dump trap frame\n");
  21. dprintf("setbus <bus> <number> Set the bus type and bus number\n");
  22. dprintf("inprtb <port> Read a byte from I/O port\n");
  23. dprintf("inprtw <port> Read a word from I/O port\n");
  24. dprintf("inprtd <port> Read a longword from I/O port\n");
  25. dprintf("inmb <addr> Read a byte from I/O memory address\n");
  26. dprintf("inmw <addr> Read a word from I/O memory address\n");
  27. dprintf("inmd <addr> Read a longword from I/O memory address\n");
  28. dprintf("ipr Dump the internal processor register state\n");
  29. dprintf("counters Dump the internal processor counters state\n");
  30. dprintf("outprtb <port> <value> Write a byte value to I/O port\n");
  31. dprintf("outprtw <port> <value> Write a word value to I/O port\n");
  32. dprintf("outprtd <port> <value> Write a byte value to I/O port\n");
  33. dprintf("outmb <addr> <value> Write a byte value to I/O memory address\n");
  34. dprintf("outmw <addr> <value> Write a word value to I/O memory address\n");
  35. dprintf("outmd <addr> <value> Write a longword value to I/O memory address\n");
  36. dprintf("\n");
  37. }