Deleted Added
sdiff udiff text old ( 10129:eb34ae5204b8 ) new ( 10189:94d6ffac1e9b )
full compact
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 39 unchanged lines hidden (view full) ---

48 cxx_header = "mem/comm_monitor.hh"
49
50 system = Param.System(Parent.any, "System that the monitor belongs to.")
51
52 # one port in each direction
53 master = MasterPort("Master port")
54 slave = SlavePort("Slave port")
55
56 # packet trace output file, disabled by default
57 trace_file = Param.String("", "Packet trace output file")
58
59 # control the sample period window length of this monitor
60 sample_period = Param.Clock("1ms", "Sample period for histograms")
61
62 # for each histogram, set the number of bins and enable the user
63 # to disable the measurement, reads and writes use the same

--- 42 unchanged lines hidden ---