move Atari_Memory_free() and Memory_free() to osdep.c

This commit is contained in:
Thomas Bernard
2020-04-11 23:28:55 +02:00
parent c037c2c911
commit 663ddf39aa
5 changed files with 109 additions and 108 deletions

View File

@@ -33,4 +33,13 @@
/// Return a number of milliseconds
dword GFX2_GetTicks(void);
#if defined (__MINT__)
void Atari_Memory_free(unsigned long *stRam, unsigned long *ttRam);
#else
/**
* @return the number of RAM bytes available
*/
unsigned long Memory_free(void);
#endif
#endif