28a29,30
> from __future__ import print_function
>
93c95
< print "Error: script doesn't take any positional arguments"
---
> print("Error: script doesn't take any positional arguments")
98,100c100,101
< print "Error: Injection vnet %d should be 0 (1-flit), 1 (1-flit) \
< or 2 (5-flit) or -1 (random)"\
< % (options.inj_vnet)
---
> print("Error: Injection vnet %d should be 0 (1-flit), 1 (1-flit) "
> "or 2 (5-flit) or -1 (random)" % (options.inj_vnet))
156c157
< print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()
---
> print('Exiting @ tick', m5.curTick(), 'because', exit_event.getCause())