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.

60 lines
1.2 KiB

4 years ago
  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. jg364.s
  5. Abstract:
  6. This module contains the video prom header for JazzG364.
  7. It must be placed starting at the first video rom location.
  8. Author:
  9. Lluis Abello (lluis) 21-Jul-92
  10. Environment:
  11. Notes:
  12. This module doesn't contain any code.
  13. Data is in the text section, so that the linker puts it at the
  14. begining.
  15. Revision History:
  16. --*/
  17. #include <ksmips.h>
  18. .text
  19. .byte 0x1 // Video Board ID
  20. .byte 8 // PROM_Stride
  21. .byte 1 // PROM_Width
  22. .byte 0x20 // PROM_Size = 32 4KB pages
  23. .ascii "Jazz"
  24. //
  25. // The following data corresponds to this structure.
  26. //
  27. //typedef struct _VIDEO_PROM_CONFIGURATION {
  28. // ULONG VideoMemorySize;
  29. // ULONG VideoControlSize;
  30. // ULONG CodeOffset;
  31. // ULONG CodeSize;
  32. // UCHAR IdentifierString[];
  33. //} VIDEO_PROM_CONFIGURATION; *PVIDEO_PROM_CONFIGURATION;
  34. .word 0x200000 // VideoMemorySize = 4MB
  35. .word 0x200000 // VideoControlSize = 4MB
  36. .word 0x200 // CodeOffset. Code starts at offset 200 from video prom
  37. .word 0x4000 // CodeSize 16K of code...
  38. .asciiz "Jazz G364"