mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
* [headers 8] Add main.h and changes for main.c symbols * fix gSystemHeapSize is size_t only in MM * segmented_address.h * rm now useless include * actually commit segmented_address.h, oops * rm gGraphThread (faulty copypaste from MM) * bss
12 lines
258 B
C
12 lines
258 B
C
#ifndef SEGMENTED_ADDRESS_H
|
|
#define SEGMENTED_ADDRESS_H
|
|
|
|
#include "ultra64.h"
|
|
#include "stdint.h"
|
|
|
|
extern uintptr_t gSegments[NUM_SEGMENTS];
|
|
|
|
#define SEGMENTED_TO_VIRTUAL(addr) (void*)(gSegments[SEGMENT_NUMBER(addr)] + SEGMENT_OFFSET(addr) + K0BASE)
|
|
|
|
#endif
|