More linting in src/machine

This commit is contained in:
Jasmine Iwanek
2023-08-21 20:23:21 -04:00
parent fd1334d454
commit d8eab07471
7 changed files with 66 additions and 64 deletions

View File

@@ -56,7 +56,8 @@ typedef struct {
static uint8_t
zenith_scratchpad_read(uint32_t addr, void *priv)
{
zenith_t *dev = (zenith_t *) priv;
const zenith_t *dev = (zenith_t *) priv;
return dev->scratchpad_ram[addr & 0x3fff];
}