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 100 IDLE 24STATE 1 1000000000 LINEAR 100 0 134217728 64 30000 30000 0 25STATE 2 1000000 IDLE 26STATE 3 1000000000 RANDOM 50 0 134217728 64 28000 32000 0 27INIT 0 28TRANSITION 0 1 1 29TRANSITION 1 2 1 30TRANSITION 2 3 1 31TRANSITION 3 3 1 32