1214571Sdim/* Intel 80386 opcode table
2214571Sdim   Copyright 2007
3214571Sdim   Free Software Foundation, Inc.
4214571Sdim
5214571Sdim   This file is part of GAS, the GNU Assembler, and GDB, the GNU Debugger.
6214571Sdim
7214571Sdim   This program is free software; you can redistribute it and/or modify
8214571Sdim   it under the terms of the GNU General Public License as published by
9214571Sdim   the Free Software Foundation; either version 2 of the License, or
10214571Sdim   (at your option) any later version.
11214571Sdim
12214571Sdim   This program is distributed in the hope that it will be useful,
13214571Sdim   but WITHOUT ANY WARRANTY; without even the implied warranty of
14214571Sdim   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15214571Sdim   GNU General Public License for more details.
16214571Sdim
17214571Sdim   You should have received a copy of the GNU General Public License
18214571Sdim   along with this program; if not, write to the Free Software
19214571Sdim   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
20214571Sdim
21214571Sdim#include "sysdep.h"
22214571Sdim#include "libiberty.h"
23214571Sdim#include "i386-opc.h"
24214571Sdim#include "i386-tbl.h"
25214571Sdim
26214571Sdim/* Segment stuff.  */
27214571Sdimconst seg_entry cs = { "cs", 0x2e };
28214571Sdimconst seg_entry ds = { "ds", 0x3e };
29214571Sdimconst seg_entry ss = { "ss", 0x36 };
30214571Sdimconst seg_entry es = { "es", 0x26 };
31214571Sdimconst seg_entry fs = { "fs", 0x64 };
32214571Sdimconst seg_entry gs = { "gs", 0x65 };
33