main.isa (4298:a92aab35e34e) | main.isa (4309:47807357f0d7) |
---|---|
1// -*- mode:c++ -*- 2 3// Copyright (c) 2007 The Hewlett-Packard Development Company 4// All rights reserved. 5// 6// Redistribution and use of this software in source and binary forms, 7// with or without modification, are permitted provided that the 8// following conditions are met: --- 58 unchanged lines hidden (view full) --- 67//////////////////////////////////////////////////////////////////// 68// 69// Namespace statement. Everything below this line will be in the 70// SparcISAInst namespace. 71// 72 73namespace X86ISA; 74 | 1// -*- mode:c++ -*- 2 3// Copyright (c) 2007 The Hewlett-Packard Development Company 4// All rights reserved. 5// 6// Redistribution and use of this software in source and binary forms, 7// with or without modification, are permitted provided that the 8// following conditions are met: --- 58 unchanged lines hidden (view full) --- 67//////////////////////////////////////////////////////////////////// 68// 69// Namespace statement. Everything below this line will be in the 70// SparcISAInst namespace. 71// 72 73namespace X86ISA; 74 |
75//Include the simple microcode assembler 76##include "microasm.isa" 77 |
|
75//Include the bitfield definitions 76##include "bitfields.isa" 77 78//Include the operand_types and operand definitions 79##include "operands.isa" 80 81//Include the base class for x86 instructions, and some support code 82##include "base.isa" 83 84//Include the definitions for the instruction formats 85##include "formats/formats.isa" 86 87//Include the definitions of the micro ops 88##include "microops/microops.isa" 89 90//Include the decoder definition 91##include "decoder/decoder.isa" | 78//Include the bitfield definitions 79##include "bitfields.isa" 80 81//Include the operand_types and operand definitions 82##include "operands.isa" 83 84//Include the base class for x86 instructions, and some support code 85##include "base.isa" 86 87//Include the definitions for the instruction formats 88##include "formats/formats.isa" 89 90//Include the definitions of the micro ops 91##include "microops/microops.isa" 92 93//Include the decoder definition 94##include "decoder/decoder.isa" |