Deleted Added
sdiff udiff text old ( 5702:bf84e2fa05f7 ) new ( 5770:03c07a62074f )
full compact
1# Copyright (c) 2008 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

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

81 local_apic = Param.UInt32(0xFEE00000, 'address of the local APIC')
82
83 base_entries = VectorParam.X86IntelMPBaseConfigEntry([],
84 'base configuration table entries')
85
86 ext_entries = VectorParam.X86IntelMPExtConfigEntry([],
87 'extended configuration table entries')
88
89class X86IntelMPBaseConfigEntry(SimObject):
90 type = 'X86IntelMPBaseConfigEntry'
91 cxx_class = 'X86ISA::IntelMP::BaseConfigEntry'
92 abstract = True
93
94class X86IntelMPExtConfigEntry(SimObject):
95 type = 'X86IntelMPExtConfigEntry'
96 cxx_class = 'X86ISA::IntelMP::ExtConfigEntry'

--- 137 unchanged lines hidden ---