1*fae548d3Szrj /* Intel 80386 opcode table 2*fae548d3Szrj Copyright (C) 2007-2020 Free Software Foundation, Inc. 3*fae548d3Szrj 4*fae548d3Szrj This file is part of the GNU opcodes library. 5*fae548d3Szrj 6*fae548d3Szrj This library is free software; you can redistribute it and/or modify 7*fae548d3Szrj it under the terms of the GNU General Public License as published by 8*fae548d3Szrj the Free Software Foundation; either version 3, or (at your option) 9*fae548d3Szrj any later version. 10*fae548d3Szrj 11*fae548d3Szrj It is distributed in the hope that it will be useful, but WITHOUT 12*fae548d3Szrj ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 13*fae548d3Szrj or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 14*fae548d3Szrj License for more details. 15*fae548d3Szrj 16*fae548d3Szrj You should have received a copy of the GNU General Public License 17*fae548d3Szrj along with this program; if not, write to the Free Software 18*fae548d3Szrj Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 19*fae548d3Szrj MA 02110-1301, USA. */ 20*fae548d3Szrj 21*fae548d3Szrj #include "sysdep.h" 22*fae548d3Szrj #include "libiberty.h" 23*fae548d3Szrj #include "i386-opc.h" 24*fae548d3Szrj #include "i386-tbl.h" 25*fae548d3Szrj 26*fae548d3Szrj /* Segment stuff. */ 27*fae548d3Szrj const seg_entry cs = { "cs", 0x2e }; 28*fae548d3Szrj const seg_entry ds = { "ds", 0x3e }; 29*fae548d3Szrj const seg_entry ss = { "ss", 0x36 }; 30*fae548d3Szrj const seg_entry es = { "es", 0x26 }; 31*fae548d3Szrj const seg_entry fs = { "fs", 0x64 }; 32*fae548d3Szrj const seg_entry gs = { "gs", 0x65 }; 33