mirror of https://github.com/tongzx/nt5src
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.
52 lines
776 B
52 lines
776 B
;/*
|
|
;++
|
|
;
|
|
; Module Name:
|
|
;
|
|
; acpi_mp.inc
|
|
;
|
|
; Abstract:
|
|
;
|
|
; include file for ACPI MP systems.
|
|
;
|
|
; WARNING: This file is included by both ASM and C files.
|
|
;
|
|
; Author:
|
|
;
|
|
;
|
|
;--
|
|
;
|
|
|
|
if 0 ; Begin C only code */
|
|
|
|
//
|
|
// The next structures are defined so that ntapic.h is
|
|
// satisfied. They are dummied up here so that halacpi
|
|
// can share code with halmps more easily.
|
|
//
|
|
|
|
typedef PVOID PPCMPPROCESSOR;
|
|
typedef PVOID PPCMPBUS;
|
|
typedef PVOID PPCMPIOAPIC;
|
|
typedef PVOID PPCMPINTI;
|
|
typedef PVOID PPCMPLINTI;
|
|
typedef PVOID PMPS_EXTENTRY;
|
|
|
|
//
|
|
// Generic NT APIC HAL stuff
|
|
//
|
|
#include "ntapic.inc"
|
|
|
|
/*
|
|
endif
|
|
;
|
|
; Begin assembly part of the definitions
|
|
;
|
|
|
|
OEMPcr struc
|
|
Reserved dd ?
|
|
OEMPcr ends
|
|
|
|
include ..\..\inc\ntapic.inc
|
|
|
|
;*/
|