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.

61 lines
1.1 KiB

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