DOOM64-RE

DOOM 64 Reverse Engineering
Log | Files | Refs | README | LICENSE

cfb.c (301B)


      1 
      2 /*
      3  * RSP view of the frame buffer.  It exists to create an RSP address for
      4  * the frame buffer, which is remapped on each frame to either of two
      5  * regions of physical memory that store that actual bits.
      6  */
      7 
      8 #include <ultra64.h>
      9 #include "i_main.h"
     10 
     11 u32 cfb[2][SCREEN_WD*SCREEN_HT]; // 8036A000
     12 
     13 
     14