Skip to content

Commit

Permalink
configs: RubySequencer doesn't have "out_ports"
Browse files Browse the repository at this point in the history
"out_ports" are actually called "interrupt_out_port"
This error has been introduced by [1]

[1]: https://gem5-review.googlesource.com/c/public/gem5/+/52584

Change-Id: If0a8d22b2cd1ef0d4240f37f8a0adcf5a826fb9d
Signed-off-by: Giacomo Travaglini <[email protected]>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/54524
Reviewed-by: Jason Lowe-Power <[email protected]>
Maintainer: Jason Lowe-Power <[email protected]>
Tested-by: kokoro <[email protected]>
  • Loading branch information
giactra committed Dec 21, 2021
1 parent f9deeea commit d77407c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configs/ruby/CHI_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def connectCpuPorts(self, cpu):
if str(p) != 'icache_port':
exec('cpu.%s = self.data_seq.in_ports' % p)
cpu.connectUncachedPorts(
self.data_seq.in_ports, self.data_seq.out_ports)
self.data_seq.in_ports, self.data_seq.interrupt_out_port)

def connectIOPorts(self, piobus):
self.data_seq.connectIOPorts(piobus)
Expand Down

0 comments on commit d77407c

Please sign in to comment.