2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
|
|
|
* Copyright 2003, 2009 Fidelity Information Services, Inc *
|
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef MAKE_MODE_INCLUDED
|
|
|
|
#define MAKE_MODE_INCLUDED
|
|
|
|
|
|
|
|
rhdtyp *make_mode (int mode_index);
|
|
|
|
|
|
|
|
#define DM_MODE 0
|
|
|
|
#define CI_MODE 1
|
|
|
|
|
|
|
|
#define CODE_LINES 3
|
|
|
|
#if defined(__ia64)
|
|
|
|
#define CODE_SIZE (CODE_LINES * CALL_SIZE + EXTRA_INST_SIZE)
|
|
|
|
#else
|
|
|
|
#define CODE_SIZE (CODE_LINES * CALL_SIZE + SIZEOF(uint4) * EXTRA_INST)
|
|
|
|
#endif /* __ia64 */
|
2024-07-19 11:43:27 -04:00
|
|
|
#include <make_mode_sp.h>
|
2012-02-05 11:35:58 -05:00
|
|
|
|
|
|
|
#endif
|