[ppu] Remove useless ppu.scroll and .addr

Removed obsolete registers ppu.address
    and ppu.scroll, see details in the prev
    commit.
main
Joaquin 3 years ago
parent a775024844
commit ddcca973de
Signed by: puly
GPG Key ID: 9E9299CD96C65EC6
  1. 16
      ppu.h

16
ppu.h

@ -36,12 +36,6 @@ typedef struct{
byte full; byte full;
}control; }control;
struct {
byte x;
byte y;
}scroll;
/* /*
7 bit 0 7 bit 0
---- ---- ---- ----
@ -84,16 +78,6 @@ typedef struct{
byte full; byte full;
}mask; }mask;
struct{
union{
struct{
byte lsb;
byte msb;
};
word complete;
};
}address;
byte dataByteBuffer; byte dataByteBuffer;

Loading…
Cancel
Save