mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
mcd, fix type for memory setup (fixes LLP64 platforms)
This commit is contained in:
parent
1510eeafd4
commit
a704c216ba
1 changed files with 1 additions and 1 deletions
|
@ -1185,7 +1185,7 @@ PICO_INTERNAL void PicoMemSetupCD(void)
|
||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
volatile // prevent strange relocs from clang
|
volatile // prevent strange relocs from clang
|
||||||
#endif
|
#endif
|
||||||
unsigned long ptr_ram = (uptr)PicoMem.ram;
|
uptr ptr_ram = (uptr)PicoMem.ram;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
// M68k
|
// M68k
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue