Deleted Added
sdiff udiff text old ( 5827:ac2c268bf4f1 ) new ( 6045:214461cb8abe )
full compact
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 16 unchanged lines hidden (view full) ---

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Gabe Black
29 */
30
31#include "dev/x86/intdev.hh"
32
33X86ISA::IntSourcePin *
34X86IntSourcePinParams::create()
35{
36 return new X86ISA::IntSourcePin(this);
37}
38
39X86ISA::IntSinkPin *
40X86IntSinkPinParams::create()
41{
42 return new X86ISA::IntSinkPin(this);
43}
44
45X86ISA::IntLine *
46X86IntLineParams::create()
47{
48 return new X86ISA::IntLine(this);
49}