51c51
< parser.add_option("-l", "--requests", metavar="N", default=100,
---
> parser.add_option("--requests", metavar="N", default=100,
90,96c90,91
< #
< # Create the M5 system. Note that the Memory Object isn't
< # actually used by the rubytester, but is included to support the
< # M5 memory size == Ruby memory size checks
< #
< system = System(physmem = SimpleMemory(),
< mem_ranges = [AddrRange(options.mem_size)])
---
> # Create the M5 system.
> system = System(mem_ranges = [AddrRange(options.mem_size)])
105d99
< #
107,110c101,102
< #
< system.cpu = RubyDirectedTester(requests_to_complete = \
< options.requests,
< generator = generator)
---
> system.cpu = RubyDirectedTester(requests_to_complete = options.requests,
> generator = generator)
124c116
< system.tester.cpuPort = ruby_port.slave
---
> system.cpu.cpuPort = ruby_port.slave