mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
Make extram uint8_t
This commit is contained in:
parent
8158ac647c
commit
8c97057809
5 changed files with 10 additions and 10 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue