CPU: Get rid of two more duplicated CPU params.
authorGabe Black <gblack@eecs.umich.edu>
Wed, 20 Aug 2008 04:59:09 +0000 (21:59 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Wed, 20 Aug 2008 04:59:09 +0000 (21:59 -0700)
src/cpu/simple/AtomicSimpleCPU.py
src/cpu/simple/TimingSimpleCPU.py

index 87e8b5509fba33259881c8e5c7fbe3e182b4bee2..b7174bb4396d7cee11404297e3a8fd7283c9c4dc 100644 (file)
@@ -35,8 +35,6 @@ class AtomicSimpleCPU(BaseSimpleCPU):
     width = Param.Int(1, "CPU width")
     simulate_data_stalls = Param.Bool(False, "Simulate dcache stall cycles")
     simulate_inst_stalls = Param.Bool(False, "Simulate icache stall cycles")
-    function_trace = Param.Bool(False, "Enable function trace")
-    function_trace_start = Param.Tick(0, "Cycle to start function trace")
     icache_port = Port("Instruction Port")
     dcache_port = Port("Data Port")
     physmem_port = Port("Physical Memory Port")
index b7f044bfa476eabae8c53fe6a63fc64dcad43af3..ce6839241116fb14735dfcfda64015a7a2aea7ad 100644 (file)
@@ -32,8 +32,6 @@ from BaseSimpleCPU import BaseSimpleCPU
 
 class TimingSimpleCPU(BaseSimpleCPU):
     type = 'TimingSimpleCPU'
-    function_trace = Param.Bool(False, "Enable function trace")
-    function_trace_start = Param.Tick(0, "Cycle to start function trace")
     icache_port = Port("Instruction Port")
     dcache_port = Port("Data Port")
     _mem_ports = BaseSimpleCPU._mem_ports + ['icache_port', 'dcache_port']