Make extram uint8_t

This commit is contained in:
Toby Jaffey 2025-12-12 20:51:39 +00:00
parent 8158ac647c
commit 8c97057809
5 changed files with 10 additions and 10 deletions

View file

@ -16,7 +16,7 @@ void setUp(void) {
uvm32_init(&vmst);
uvm32_load(&vmst, rom_bin, rom_bin_len);
memset(extram, 0x00, sizeof(extram));
uvm32_extram(&vmst, extram, sizeof(extram));
uvm32_extram(&vmst, (uint8_t *)extram, sizeof(extram));
}
void tearDown(void) {