home *** CD-ROM | disk | FTP | other *** search
/ Emulator Universe CD / emulatoruniversecd1998.iso / Speccy / Emulators / winemu / SOURCES / Z80 / NDEBGZ80.C < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-10  |  1.9 KB  |  55 lines

  1. /* NDebgZ80.c: debug 'fake' routines, just to keep linker happy.
  2.  *
  3.  * Copyright 1996 Rui Fernando Ferreira Ribeiro.
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19.  
  20. #include "quirks.h"
  21.  
  22. /* Trace flag
  23. */
  24. UCHAR TraceOn = 0;
  25.  
  26. /*=========================================================================*
  27.  *                            trace                                        *
  28.  *=========================================================================*/
  29. void trace()
  30. {
  31. }
  32.  
  33. /*=========================================================================*
  34.  *                            Init_Z80debugger                             *
  35.  *=========================================================================*/
  36. void Init_Z80debugger()
  37. {
  38. }
  39.  
  40. /*=========================================================================*
  41.  *                            Close_Z80debugger                            *
  42.  *=========================================================================*/
  43. void Close_Z80debugger()
  44. {
  45. }
  46.  
  47. /*=========================================================================*
  48.  *                            erase_cpuregs                                *
  49.  *=========================================================================*/
  50. void erase_cpuregs()
  51. {
  52. }
  53.  
  54. /* EOF: NDebgZ80.c */
  55.