ruby: Python config files now sets a unique id for each sequencer

This commit is contained in:
Brad Beckmann
2010-03-21 21:22:20 -07:00
parent d8e1e5abd0
commit 91b0c5487b
5 changed files with 10 additions and 5 deletions

View File

@@ -76,7 +76,8 @@ def create_system(options, phys_mem, piobus, dma_devices):
l1d_cache = L1Cache(size = options.l1d_size,
assoc = options.l1d_assoc)
cpu_seq = RubySequencer(icache = l1i_cache,
cpu_seq = RubySequencer(version = i,
icache = l1i_cache,
dcache = l1d_cache,
physMemPort = phys_mem.port,
physmem = phys_mem)