AARCHMRS Schema 2.7.4

↚ Home

RegisterReset object

A reset value which applies to the Register.

object

Properties Type Description
_meta Meta
See Meta for more information.
_type
Enum
RegisterReset
description Text
See Text for more information.
restrictions
array [
]

Reset applies to the specified Exception Levels.

type
oneOf [
null
]

Whether this reset description applies to a Warm or a Cold reset.

Enum
Warm Cold
oneOf null
Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.

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

{
  "info": [
    "A reset value which applies to the Register."
  ],
  "properties": {
    "_meta": {
      "$ref": "Meta.json"
    },
    "_type": {
      "enum": [
        "RegisterReset"
      ]
    },
    "description": {
      "$ref": "Text.json"
    },
    "restrictions": {
      "info": [
        "Reset applies to the specified Exception Levels."
      ],
      "items": {
        "enum": [
          "EL0",
          "EL1",
          "EL2",
          "EL3"
        ]
      },
      "type": "array"
    },
    "type": {
      "info": [
        "Whether this reset description applies to a Warm or a Cold reset."
      ],
      "oneOf": [
        {
          "enum": [
            "Warm",
            "Cold"
          ]
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "title": "RegisterReset",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "additionalProperties": false,
  "deprecated": true
}