More changes so that asynchronus blocks work properly
[gem5.git] / objects / CoherenceProtocol.mpy
1 Coherence = Enum('uni', 'msi', 'mesi', 'mosi', 'moesi')
2
3 simobj CoherenceProtocol(SimObject):
4 type = 'CoherenceProtocol'
5 do_upgrades = Param.Bool(True, "use upgrade transactions?")
6 protocol = Param.Coherence("name of coherence protocol")