--- previous/src/nextMemory.c 2018/04/24 19:25:26 1.1.1.2 +++ previous/src/nextMemory.c 2018/04/24 19:27:28 1.1.1.3 @@ -16,9 +16,9 @@ const char STMemory_fileid[] = "Hatari s #include "memorySnapShot.h" /* - * main RAM buffer (8mb for stock Next) + * Main RAM buffer (128 MB for turbo systems) */ -Uint8 NEXTRam[64*1024*1024]; +Uint8 NEXTRam[128*1024*1024]; Uint32 NEXTRamEnd; /* End of ST Ram, above this address is no-mans-land and ROM/IO memory */ @@ -47,7 +47,7 @@ void NEXTMemory_Clear(Uint32 StartAddres * * Return true if whole copy was safe / valid. */ -/** + bool NEXTMemory_SafeCopy(Uint32 addr, Uint8 *src, unsigned int len, const char *name) { Uint32 end; @@ -66,7 +66,7 @@ bool NEXTMemory_SafeCopy(Uint32 addr, Ui } return false; } -*/ + /**