tgen-simple-mem.cfg revision 10218:5a45f124a2f7
1# This format supports comments using the '#' symbol as the leading
2# character of the line
3#
4# The file format contains [STATE]+ [INIT] [TRANSITION]+ in any order,
5# where the states are the nodes in the graph, init describes what
6# state to start in, and transition describes the edges of the graph.
7#
8# STATE <id> <duration (ticks)> <type>
9#
10# State IDLE idles
11#
12# States LINEAR and RANDOM have additional <percent reads> <start addr>
13# <end addr> <access size (bytes)> <min period (ticks)> <max period (ticks)>
14# <data limit (bytes)>
15#
16# State TRACE plays back a pre-recorded trace once
17#
18# Addresses are expressed as decimal numbers, both in the
19# configuration and the trace file. The period in the linear and
20# random state is from a uniform random distribution over the
21# interval. If a specific value is desired, then the min and max can
22# be set to the same value.
23STATE 0 1000000 TRACE tests/quick/se/70.tgen/tgen-simple-mem.trc 100
24STATE 1 1000000000 RANDOM 0 0 134217728 64 30000 30000 0
25INIT 0
26TRANSITION 0 1 1
27TRANSITION 1 1 1
28