- [NEW] gbscreen ara accedeix a la hram i vram directament

- [NEW] Afegida al makefile opció per a profilechar
This commit is contained in:
2025-01-30 12:20:58 +01:00
parent 1b343e4dcc
commit dc6b3b6a78
6 changed files with 90 additions and 75 deletions

View File

@@ -186,7 +186,12 @@ namespace mem
}
uint8_t *rawPtr(uint16_t address)
uint8_t *rawVram()
{
return vram;
}
uint8_t *rawHram(uint16_t address)
{
return &hram[address-0xfe00];
}