Date : Wed, 26 Apr 2000 19:33:35 +0100 (BST)
From : Chris Evans <chris@...>
Subject: Re: Emulators For Linux?
On Wed, 26 Apr 2000, Dr. David Gilbert wrote:
> On Wed, 26 Apr 2000, Chris Evans wrote:
>
> > I've toyed with the idea of adding 16bpp support a few times, but never
> > found the time.... :(
>
> Please do - and fix that compile problem; I've had it on my list for ages
> but to be honest haven't had time to get back to beebem.
Ok, I dug out the patch to fix the compile problems. Crispin, let me know
if it builds (and runs!) with this patch applied. Quite a nasty one to fix
;-)
Cheers
Chris
diff -ruBb BeebEm.orig/dagCL/AssocArray.h BeebEm/dagCL/AssocArray.h
--- BeebEm.orig/dagCL/AssocArray.h Mon Sep 1 17:56:33 1997
+++ BeebEm/dagCL/AssocArray.h Mon Nov 15 05:24:18 1999
@...@ -44,6 +44,8 @@
dagAssocArrayErr(const char *iMessage) : dagErr("Assoc Array", iMessage) {};
};
+template<class Index, class Content> class dagAssocArray;
+
template<class Index, class Content> class dagAssocArray_Element {
friend dagAssocArray<Index,Content>;
Index index;
diff -ruBb BeebEm.orig/dagCL/Err.h BeebEm/dagCL/Err.h
--- BeebEm.orig/dagCL/Err.h Mon Sep 1 17:56:33 1997
+++ BeebEm/dagCL/Err.h Mon Nov 15 05:25:54 1999
@...@ -39,7 +39,7 @@
ostream& operator<<(ostream& s, dagErr& err);
/* Until we figure out what is going on */
-#define throw
+//#define throw
#endif