[NDK][HAL][NTOS] Add missing PRCB_MINOR_VERSION / PRCB_MAJOR_VERSION and use them.

This commit is contained in:
Hermès Bélusca-Maïto 2022-03-08 02:25:53 +01:00
parent cfbb734799
commit 9ea2b803c8
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
8 changed files with 21 additions and 10 deletions

View file

@ -33,10 +33,18 @@ Author:
#define IPI_SYNCH_REQUEST 10
#define MAXIMUM_VECTOR 0x100
//
// Static Kernel-Mode Address start (use MM_KSEG0_BASE for actual)
//
#define KSEG0_BASE 0x80000000
#define PRCB_MAJOR_VERSION 1
#define PRCB_BUILD_DEBUG 1
//
// PRCB Flags
//
#define PRCB_MINOR_VERSION 1
#define PRCB_MAJOR_VERSION 1
#define PRCB_BUILD_DEBUG 1
#define PRCB_BUILD_UNIPROCESSOR 2
#ifndef ROUND_UP
#define ROUND_UP(x,y) (((x) + ((y)-1)) & ~((y)-1))