/** * Check whether given memory address and size are within * valid memory area (i.e. read/write from/to there doesn't * overwrite Hatari's own memory & cause potential segfaults) * and that the size is positive. * * If they are; return true, otherwise false. */ static inline bool NEXTMemory_ValidArea(Uint32 addr, int size) { // we are a bit optimistic... return true; }