diff options
Diffstat (limited to 'tests/quick/se/70.tgen/tgen-simple-dram.cfg')
-rw-r--r-- | tests/quick/se/70.tgen/tgen-simple-dram.cfg | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/quick/se/70.tgen/tgen-simple-dram.cfg b/tests/quick/se/70.tgen/tgen-simple-dram.cfg new file mode 100644 index 000000000..a10369bab --- /dev/null +++ b/tests/quick/se/70.tgen/tgen-simple-dram.cfg @@ -0,0 +1,29 @@ +# This format supports comments using the '#' symbol as the leading +# character of the line +# +# The file format contains [STATE]+ [INIT] [TRANSITION]+ in any order, +# where the states are the nodes in the graph, init describes what +# state to start in, and transition describes the edges of the graph. +# +# STATE <id> <duration (ticks)> <type> +# +# State IDLE idles +# +# States LINEAR and RANDOM have additional <percent reads> <start addr> +# <end addr> <access size (bytes)> <min period (ticks)> <max period (ticks)> +# <data limit (bytes)> +# +# State TRACE plays back a pre-recorded trace once +# +# Addresses are expressed as decimal numbers, both in the +# configuration and the trace file. The period in the linear and +# random state is from a uniform random distribution over the +# interval. If a specific value is desired, then the min and max can +# be set to the same value. +STATE 0 100 IDLE +#STATE 1 10000000000 TRACE tests/quick/se/70.tgen/tgen-simple-dram.trc 0 +#STATE 1 1000000000 RANDOM 101 0 134217728 64 2000 2000 0 +STATE 1 1000000000 LINEAR 100 0 134217728 64 2000 2000 0 +INIT 0 +TRANSITION 0 1 1 +TRANSITION 1 1 1 |