pkgsrc/emulators/palmosemulator/patches/patch-aq
joerg 1ddaeb733e Use nanosleep on DragonFly and fix C++ for GCC 3.4 (no passing of
function pointers to protected members).
2006-06-28 15:56:10 +00:00

22 lines
787 B
Text

$NetBSD: patch-aq,v 1.1 2006/06/28 15:56:10 joerg Exp $
--- SrcShared/Hardware/EmRegs.h.orig 2006-06-28 14:35:52.000000000 +0000
+++ SrcShared/Hardware/EmRegs.h
@@ -54,12 +54,17 @@ class EmRegs
uint32 start, int count);
uint32 UnsupportedRead (emuptr address, int size);
+ public:
uint32 StdRead (emuptr address, int size);
+
+ protected:
uint32 StdReadBE (emuptr address, int size);
uint32 ZeroRead (emuptr address, int size);
void UnsupportedWrite (emuptr address, int size, uint32 value);
+ public:
void StdWrite (emuptr address, int size, uint32 value);
+ protected:
void StdWriteBE (emuptr address, int size, uint32 value);
void NullWrite (emuptr address, int size, uint32 value);