AARCHMRS Schema 2.7.4

↚ Home

Accessors.WriteOffsetAccessor object

A WriteOffsetAccess for a given RegisterBlock describes write accessor for a single child Register or RegisterBlock.

object

Properties Type Description
_meta Meta
See Meta for more information.
_type
Enum
Accessors.WriteOffsetAccessor
access ..Permission.SystemAccess

Provides accessibility information for the access.

See ..Permission.SystemAccess for more information.
condition Traits.HasCondition

The condition which must be true for this accessor to be used.

See definitions.condition in Traits.HasCondition for more information.
offset
array [
AST.BinaryOp
]

Specifies the memory offset (or offsets) at which the referenced Register or RegisterBlock exists.

Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.

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

{
  "additionalProperties": false,
  "info": [
    "A `WriteOffsetAccess` for a given `RegisterBlock` describes write accessor for a single child `Register` or `RegisterBlock`."
  ],
  "properties": {
    "_meta": {
      "$ref": "../Meta.json"
    },
    "_type": {
      "enum": [
        "Accessors.WriteOffsetAccessor"
      ]
    },
    "condition": {
      "$ref": "../Traits/HasCondition.json#/definitions/condition",
      "info": [
        "The condition which must be true for this accessor to be used."
      ]
    },
    "offset": {
      "info": [
        "Specifies the memory offset (or offsets) at which the referenced `Register` or `RegisterBlock` exists."
      ],
      "type": "array",
      "items": {
        "$ref": "../AST/BinaryOp.json#/definitions/expression"
      },
      "minItems": 1
    },
    "access": {
      "info": [
        "Provides accessibility information for the access."
      ],
      "$ref": "./Permission/SystemAccess.json"
    }
  },
  "required": [
    "offset",
    "access"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "WriteOffsetAccessor"
}