X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=AcessNative%2Facesskernel_src%2Finclude%2Farch.h;h=b63d1bb217287c73f03733e8fe235291fb74c332;hb=42fb98c5f353bf3e7cfbc202e2ace886b0c85874;hp=a6685b2d3c4424769d30603f29bda4f0499aed97;hpb=de8ff799edf1fbfeee9447923497273dd254252c;p=tpg%2Facess2.git diff --git a/AcessNative/acesskernel_src/include/arch.h b/AcessNative/acesskernel_src/include/arch.h index a6685b2d..b63d1bb2 100644 --- a/AcessNative/acesskernel_src/include/arch.h +++ b/AcessNative/acesskernel_src/include/arch.h @@ -9,6 +9,7 @@ #undef CLONE_VM #define _MODULE_NAME_ "NativeKernel" +#define PAGE_SIZE 0x1000 // Assume, making an Ass out of u and me #define BITS (sizeof(intptr_t)*8) typedef uint8_t Uint8; @@ -28,11 +29,6 @@ typedef intptr_t tPAddr; typedef int BOOL; -typedef uint32_t tTID; -typedef uint32_t tPID; -typedef uint32_t tUID; -typedef uint32_t tGID; - struct sShortSpinlock { int IsValid; @@ -42,7 +38,10 @@ struct sShortSpinlock #define SHORTLOCK(...) #define SHORTREL(...) -#define NUM_CFG_ENTRIES 10 +//#define NUM_CFG_ENTRIES 10 + +extern void Debug_PutCharDebug(char ch); +extern void Debug_PutStringDebug(const char *str); #endif