Upated some machine files to no longer use the egareads and egawrites variables, should fix compilation.

This commit is contained in:
OBattler
2021-03-24 19:42:47 +01:00
parent 5205a06eb2
commit be8c03b3c0
5 changed files with 0 additions and 10 deletions

View File

@@ -221,7 +221,6 @@ vid_write(uint32_t addr, uint8_t val, void *p)
if (pcjr->memctrl == -1) return;
egawrites++;
pcjr->b8000[addr & 0x3fff] = val;
}
@@ -233,7 +232,6 @@ vid_read(uint32_t addr, void *p)
if (pcjr->memctrl == -1) return(0xff);
egareads++;
return(pcjr->b8000[addr & 0x3fff]);
}