AARCHMRS Schema 2.7.4

↚ Home

Resets.InstanceReset object

An InstanceReset is a reset that is used to specify a reset that applies in a specific instance of a register.

object

Properties Type Description
_meta Meta
See Meta for more information.
_type
Enum
Resets.InstanceReset
resets
object { /.*/ :
}

This object represents a field reset for a particular instance of a Register. There could be more than one instance (e.g. Secure and Non-Secure) for a given reset event (cold or warm).

Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.
Examples
{
    "_type": "Resets.InstanceReset", 
    "resets": {
        "REG0_S": {
            "_type": "Values.Value", 
            "value": "'10'"
        }, 
        "REG0_NS": {
            "_type": "Values.Value", 
            "value": "'00'"
        }
    }
}

Schema http://json-schema.org/draft-04/schema#

{
  "additionalProperties": false,
  "examples": [
    {
      "_type": "Resets.InstanceReset",
      "resets": {
        "REG0_S": {
          "_type": "Values.Value",
          "value": "'10'"
        },
        "REG0_NS": {
          "_type": "Values.Value",
          "value": "'00'"
        }
      }
    }
  ],
  "properties": {
    "_meta": {
      "$ref": "../Meta.json"
    },
    "_type": {
      "enum": [
        "Resets.InstanceReset"
      ]
    },
    "resets": {
      "type": "object",
      "minProperties": 1,
      "info": [
        "This object represents a field reset for a particular instance of a Register.  There could be more than one instance (e.g. Secure and Non-Secure) for a given reset event (cold or warm)."
      ],
      "patternProperties": {
        ".*": {
          "$ref": "../FieldResets.json#/definitions/allowed_resets"
        }
      }
    }
  },
  "required": [
    "resets"
  ],
  "title": "InstanceReset",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "info": [
    [
      "An `InstanceReset` is a reset that is used to specify a reset that applies in a specific",
      "instance of a register."
    ]
  ]
}