mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-10-26 16:29:37 -04:00
allow compiling without 32x and sms code
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@877 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
46bcb89971
commit
f3a57b2d6c
10 changed files with 74 additions and 13 deletions
|
|
@ -1058,6 +1058,14 @@ void ym2612_unpack_state(void)
|
|||
elprintf(EL_YMTIMER, "load: %i/%i, timer_b_next_oflow %i", tbt>>16, tbc>>16, timer_b_next_oflow >> 8);
|
||||
}
|
||||
|
||||
#if defined(NO_32X) && defined(_ASM_MEMORY_C)
|
||||
// referenced by asm code
|
||||
u32 PicoRead8_32x(u32 a) { return 0; }
|
||||
u32 PicoRead16_32x(u32 a) { return 0; }
|
||||
void PicoWrite8_32x(u32 a, u32 d) {}
|
||||
void PicoWrite16_32x(u32 a, u32 d) {}
|
||||
#endif
|
||||
|
||||
// -----------------------------------------------------------------
|
||||
// z80 memhandlers
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue