2007-03-15 22:31:24 +08:00
|
|
|
/* Intel 80386 opcode table
|
2021-01-01 06:58:58 +08:00
|
|
|
Copyright (C) 2007-2021 Free Software Foundation, Inc.
|
2007-03-15 22:31:24 +08:00
|
|
|
|
2007-07-05 17:49:03 +08:00
|
|
|
This file is part of the GNU opcodes library.
|
2007-03-15 22:31:24 +08:00
|
|
|
|
2007-07-05 17:49:03 +08:00
|
|
|
This library is free software; you can redistribute it and/or modify
|
2007-03-15 22:31:24 +08:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-05 17:49:03 +08:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
any later version.
|
2007-03-15 22:31:24 +08:00
|
|
|
|
2007-07-05 17:49:03 +08:00
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
|
|
License for more details.
|
2007-03-15 22:31:24 +08:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-05 17:49:03 +08:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
2007-03-15 22:31:24 +08:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-03-16 01:30:31 +08:00
|
|
|
#include "libiberty.h"
|
2007-03-15 22:31:24 +08:00
|
|
|
#include "i386-opc.h"
|
2007-06-28 22:29:56 +08:00
|
|
|
#include "i386-tbl.h"
|
2007-03-16 01:30:31 +08:00
|
|
|
|
2021-03-30 20:09:41 +08:00
|
|
|
/* To be indexed by segment register number. */
|
|
|
|
const unsigned char i386_seg_prefixes[] = {
|
|
|
|
ES_PREFIX_OPCODE,
|
|
|
|
CS_PREFIX_OPCODE,
|
|
|
|
SS_PREFIX_OPCODE,
|
|
|
|
DS_PREFIX_OPCODE,
|
|
|
|
FS_PREFIX_OPCODE,
|
|
|
|
GS_PREFIX_OPCODE
|
|
|
|
};
|