From ddcca973dea5ae398356f80d28c9cf7f08d499bf Mon Sep 17 00:00:00 2001 From: Joaquin Date: Sun, 11 Dec 2022 22:37:34 +0200 Subject: [PATCH] [ppu] Remove useless ppu.scroll and .addr Removed obsolete registers ppu.address and ppu.scroll, see details in the prev commit. --- ppu.h | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/ppu.h b/ppu.h index 452456a..4ff909a 100644 --- a/ppu.h +++ b/ppu.h @@ -36,12 +36,6 @@ typedef struct{ byte full; }control; - struct { - byte x; - byte y; - }scroll; - - /* 7 bit 0 ---- ---- @@ -84,16 +78,6 @@ typedef struct{ byte full; }mask; - struct{ - union{ - struct{ - byte lsb; - byte msb; - }; - - word complete; - }; - }address; byte dataByteBuffer;