home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / emulaton / at2600 / !v2600 / h / exmacro < prev    next >
Text File  |  1997-03-24  |  860b  |  31 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: exmacro.h,v 1.5 1996/11/24 16:55:40 ahornby Exp $
  14. ******************************************************************************/
  15.  
  16. /*
  17.   Defines inline functions that would otherwise be macros.
  18.   */
  19.  
  20. #ifndef EXMACRO_H
  21. #define EXMACRO_H
  22.  
  23. inline ADDRESS load_abs_addr(void);
  24. inline int pagetest( ADDRESS a, BYTE b);
  25. inline int brtest( BYTE a);
  26. inline int toBCD( int a);
  27. inline int fromBCD( int a);
  28.  
  29. #endif
  30.  
  31.