home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / emulaton / at2600 / !v2600 / h / memory < prev    next >
Text File  |  1997-03-24  |  814b  |  37 lines

  1. /*****************************************************************************
  2.  
  3.    This file is part of x2600, the Atari 2600 Emulator
  4.    ===================================================
  5.    
  6.    Copyright 1996 Alex Hornby. For contributions see the file CREDITS.
  7.  
  8.    This software is distributed under the terms of the GNU General Public
  9.    License. This is free software with ABSOLUTELY NO WARRANTY.
  10.    
  11.    See the file COPYING for details.
  12.    
  13.    $Id: memory.h,v 1.5 1996/11/24 16:55:40 ahornby Exp $
  14. ******************************************************************************/
  15.  
  16. /*
  17.   Prototypes for the memory interface.
  18.   */
  19.  
  20. #ifndef VCSMEMORY_H
  21. #define VCSMEMORY_H
  22.  
  23. inline BYTE 
  24. undecRead (ADDRESS a);
  25.  
  26. void 
  27. decWrite ( ADDRESS a, BYTE b);
  28.  
  29. BYTE 
  30. decRead (ADDRESS a);
  31.  
  32. BYTE 
  33. dbgRead (ADDRESS a);
  34.  
  35.  
  36. #endif
  37.