186d7f5d3SJohn Marino /* Intel 80386 opcode table 286d7f5d3SJohn Marino Copyright 2007 386d7f5d3SJohn Marino Free Software Foundation, Inc. 486d7f5d3SJohn Marino 586d7f5d3SJohn Marino This file is part of the GNU opcodes library. 686d7f5d3SJohn Marino 786d7f5d3SJohn Marino This library is free software; you can redistribute it and/or modify 886d7f5d3SJohn Marino it under the terms of the GNU General Public License as published by 986d7f5d3SJohn Marino the Free Software Foundation; either version 3, or (at your option) 1086d7f5d3SJohn Marino any later version. 1186d7f5d3SJohn Marino 1286d7f5d3SJohn Marino It is distributed in the hope that it will be useful, but WITHOUT 1386d7f5d3SJohn Marino ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 1486d7f5d3SJohn Marino or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 1586d7f5d3SJohn Marino License for more details. 1686d7f5d3SJohn Marino 1786d7f5d3SJohn Marino You should have received a copy of the GNU General Public License 1886d7f5d3SJohn Marino along with this program; if not, write to the Free Software 1986d7f5d3SJohn Marino Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 2086d7f5d3SJohn Marino MA 02110-1301, USA. */ 2186d7f5d3SJohn Marino 2286d7f5d3SJohn Marino #include "sysdep.h" 2386d7f5d3SJohn Marino #include "libiberty.h" 2486d7f5d3SJohn Marino #include "i386-opc.h" 2586d7f5d3SJohn Marino #include "i386-tbl.h" 2686d7f5d3SJohn Marino 2786d7f5d3SJohn Marino /* Segment stuff. */ 2886d7f5d3SJohn Marino const seg_entry cs = { "cs", 0x2e }; 2986d7f5d3SJohn Marino const seg_entry ds = { "ds", 0x3e }; 3086d7f5d3SJohn Marino const seg_entry ss = { "ss", 0x36 }; 3186d7f5d3SJohn Marino const seg_entry es = { "es", 0x26 }; 3286d7f5d3SJohn Marino const seg_entry fs = { "fs", 0x64 }; 3386d7f5d3SJohn Marino const seg_entry gs = { "gs", 0x65 }; 34