2011-06-26 21:25:25 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// $Id$
|
2008-04-05 02:39:45 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2017-10-20 00:27:25 +03:00
|
|
|
// Copyright (c) 2017 Stanislav Shwartsman
|
2008-04-05 02:39:45 +04:00
|
|
|
// Written by Stanislav Shwartsman [sshwarts at sourceforge net]
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
2011-01-21 19:07:51 +03:00
|
|
|
// version 2 of the License, or (at your option) any later version.
|
2008-04-05 02:39:45 +04:00
|
|
|
//
|
2011-01-21 19:07:51 +03:00
|
|
|
// This library is distributed in the hope that it will be useful,
|
2008-04-05 02:39:45 +04:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
2011-01-21 19:07:51 +03:00
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA B 02110-1301 USA
|
2008-04-05 02:39:45 +04:00
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-10-20 00:27:25 +03:00
|
|
|
#ifndef BX_OPCODES_ENUM
|
|
|
|
#define BX_OPCODES_ENUM
|
2013-09-24 09:21:00 +04:00
|
|
|
|
2017-10-20 00:27:25 +03:00
|
|
|
enum {
|
|
|
|
#define bx_define_opcode(a, b, c, d, s1, s2, s3, s4, e) a,
|
|
|
|
#include "ia_opcodes.def"
|
|
|
|
BX_IA_LAST
|
|
|
|
};
|
|
|
|
#undef bx_define_opcode
|
2013-09-24 09:21:00 +04:00
|
|
|
|
2012-10-09 19:16:48 +04:00
|
|
|
#endif
|