pkgsrc/emulators/arcem/patches/patch-ac
skrll b7a81af86c Update arcem to 1.00
Changes are

- New manual and new SourceForge page. Other documentation deprecated.
- Added project files for MS VC++, and fix warnings provoked by it.
- Further split of windowing/non-windowing functionality to aid division
  of architecture-independent files.
- Windows version made independent from Cygwin.
- Windows support imported from eQRD version. Features brought inline with
  other versions, including icon change, and same format for choices file.
- Entirety of build warnings fixed under GCC, including those that appeared
  from turning on harsh warning flags.
- General tidying.
- Makefile rearranged so that default Unix builds are more sensible.
- Support for running RISC OS, by Alex Macfarlane Smith and Peter Naulls
- Split of the windowing aspects of the code, to allow independent development.
- Some small speed ups.
- Source code tidying and warning fixes.
2004-12-03 15:15:23 +00:00

35 lines
1.1 KiB
Text

$NetBSD: patch-ac,v 1.1 2004/12/03 15:15:23 skrll Exp $
--- armrdi.c.orig 2004-06-04 09:21:14.000000000 +0100
+++ armrdi.c
@@ -114,11 +114,13 @@ void ARMul_ConsolePrint(ARMul_State *sta
}
}
+#if 0
static void ARMul_DebugPause(ARMul_State *state)
{
if(!(rdi_log & 8))
state->hostif->dbgpause(state->hostif->dbgarg);
}
+#endif
/***************************************************************************\
* RDI_open *
@@ -278,6 +280,7 @@ static int RDI_CPUwrite(unsigned mode, u
* Internal functions for breakpoint table manipulation *
\***************************************************************************/
+#if 0
static void deletewatchnode(WatchNode **prevp)
{ WatchNode *p = *prevp;
*prevp = p->next;
@@ -305,7 +308,7 @@ static WatchNode *installwatch(ARMword a
p->bound = bound;
return p;
}
-
+#endif
/***************************************************************************\
* RDI_execute *
\***************************************************************************/