Skip to content

Commit

Permalink
Squeeze in support for regular layer windowing
Browse files Browse the repository at this point in the history
  • Loading branch information
Hydr8gon committed Nov 19, 2024
1 parent b25051a commit a73c4e4
Show file tree
Hide file tree
Showing 2 changed files with 212 additions and 194 deletions.
6 changes: 4 additions & 2 deletions src/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,15 +196,17 @@
#define RDP_INIT (FRAMEBUFFER + 0x8)
#define RDP_FRAME (RDP_INIT + 0x40)
#define RDP_FILL (RDP_FRAME + 0x18)
#define RDP_TILE (RDP_FILL + 0x38)
#define RDP_WINDOW (RDP_FILL + 0x38)
#define RDP_TILE (RDP_WINDOW + 0x10)
#define RDP_TILE7 (RDP_TILE + 0x28)
#define TILE_PARAMS (RDP_TILE7 + 0x78)
#define LAYER_CHART (TILE_PARAMS + 0x20)
#define OBJ_SIZES (LAYER_CHART + 0x90)
#define SCRN_OFSV (OBJ_SIZES + 0x20)
#define FILL_JUMPS (SCRN_OFSV + 0x8)
#define TILE_JUMPS (FILL_JUMPS + 0x10)
#define TEXREC_OFS (TILE_JUMPS + 0xC)
#define SHARED_JUMPS (TILE_JUMPS + 0xC)
#define TEXREC_OFS (SHARED_JUMPS + 0xC)
#define FILLREC_MASK (TEXREC_OFS + 0x4)
#define LDBLK_BITS (FILLREC_MASK + 0x4)
#define MAX_OBJECT (LDBLK_BITS + 0x4)
Expand Down
Loading

0 comments on commit a73c4e4

Please sign in to comment.