diff --git a/src/ppu.rs b/src/ppu.rs index 4283078cac1d9dcb7e1ea5e42a119d0893dd6ba7..c7bc9d23ec4c5423712346bdbac0ae361a9dfde1 100644 --- a/src/ppu.rs +++ b/src/ppu.rs @@ -31,6 +31,8 @@ pub struct Ppu { /// Video dedicated memory (VRAM) where both the tiles and /// the sprites are going to be stored. pub vram: [u8; VRAM_SIZE], + /// High RAM memory that should provide extra speed for regular + /// operations. pub hram: [u8; HRAM_SIZE], /// The current set of processed tiles that are store in the /// PPU related structures.