Sha256: 3e779b3c3c5cb4639ab95bb2e82bf7e8624ad827158dd340752467d8be823ffe

Contents?: true

Size: 1.22 KB

Versions: 83

Compression:

Stored size: 1.22 KB

Contents

# Define tables by: TABLE, name, description, endian
#   name and description are strings contained in double quotes
#   endian is either BIG_ENDIAN or LITTLE_ENDIAN
TABLE "Master Table Map" "The one table to rule them all" UNIQUE BIG_ENDIAN
  # Each element in a UNIQUE table is defined as follows:
  #   name, description, type, bit size, display type, min, max, default
  #   type must be INT or UNIT
  #   display type must be DEC, HEX, STATE
  #     add -U to make DEC or HEX uneditable, i.e. DEC-U or HEX-U
  #   if min or max are too large for the type they will be set to the types max
  PARAMETER "Param1" "The first parameter" INT 32 STATE 0 1 0
    STATE DEFAULT 0
    STATE USER 1
  PARAMETER "Param2" "The second parameter" INT 32 STATE 0 1 1
    STATE DEFAULT 0
    STATE USER 1
  PARAMETER "Param3" "The third parameter" INT 16 DEC 0 10 1
  PARAMETER "Param4" "The fourth parameter" INT 8 HEX 0 255 255
  PARAMETER "PAD" "Unused padding" INT 576 HEX-U 0 0 0

TABLE "Trailer" "Data appended to a table file" UNIQUE BIG_ENDIAN
  PARAMETER "File ID" "Uneditable file id" INT 16 DEC-U 0 65535 4
  PARAMETER "Version ID" "User defined version id" INT 16 DEC 0 65535 1
  PARAMETER "CRC32" "Auto-generated CRC" INT 32 HEX-U 0 4294967295 0

Version data entries

83 entries across 64 versions & 1 rubygems

Version Path
cosmos-4.5.2-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.5.2 test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.5.1-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.5.1 test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.5.0-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.5.0 test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.4.2-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.4.2 test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.4.1-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.4.1 test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.4.0-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.4.0 test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.3.0-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.3.0 test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.2.4-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.2.4 test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.2.3-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.2.3 test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.2.2-java test/performance/config/tools/table_manager/ExampleTableDefinition.txt
cosmos-4.2.2 test/performance/config/tools/table_manager/ExampleTableDefinition.txt