diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-10-18 21:01:05 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-10-18 21:01:05 -0400 |
commit | 4f43bc65eaf67c2458177f6e77b2ca611cb21ef7 (patch) | |
tree | 81221b6ccfeb4ce78e88e13545b6da1097c3e6e3 /python | |
parent | e999645caf2f5808512a1f4e88cf8a24d8f8cbc6 (diff) | |
download | gem5-4f43bc65eaf67c2458177f6e77b2ca611cb21ef7.tar.xz |
use the dedicated flag, no more exposing the m5reg directly
dev/ns_gige.cc:
stop exposing the m5reg to the configuration stuff and build it
based on exposed flags. Expose dedicated now.
dev/ns_gige.hh:
goodbye m5reg hello dedicated
dev/ns_gige_reg.h:
Flags for the M5REG
--HG--
extra : convert_revision : 11134fe67cdf5291caacf9b3041739c437b983e3
Diffstat (limited to 'python')
-rw-r--r-- | python/m5/objects/Ethernet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/objects/Ethernet.py b/python/m5/objects/Ethernet.py index d3e8c2811..00ad479f1 100644 --- a/python/m5/objects/Ethernet.py +++ b/python/m5/objects/Ethernet.py @@ -83,7 +83,7 @@ class NSGigE(PciDevice): rx_fifo_size = Param.MemorySize('128kB', "max size in bytes of rxFifo") tx_fifo_size = Param.MemorySize('128kB', "max size in bytes of txFifo") - m5reg = Param.UInt32(0, "Register for m5 usage") + dedicated = Param.Bool(False, "dedicated kernel thread for driver") intr_delay = Param.Latency('0us', "Interrupt Delay in microseconds") payload_bus = Param.Bus(NULL, "The IO Bus to attach to for payload") |