home *** CD-ROM | disk | FTP | other *** search
/ MACD 4 / MACD4.iso / Emulatory / v2600 / source.lha / source / exmacro.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-27  |  928 b   |  34 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.    Tweaked by Matthew Stroup for Amiga v2600, January 27, 1997.
  16.  
  17. ******************************************************************************/
  18.  
  19. /*
  20.   Defines inline functions that would otherwise be macros.
  21.   */
  22.  
  23. #ifndef EXMACRO_H
  24. #define EXMACRO_H
  25.  
  26. inline ADDRESS load_abs_addr(void);
  27. inline int pagetest( ADDRESS a, UBYTE b);
  28. inline int brtest( UBYTE a);
  29. inline int toBCD( int a);
  30. inline int fromBCD( int a);
  31.  
  32. #endif
  33.  
  34.