Skip to content

Concatenation Expression as target for Assignment #116

@EAlexJ

Description

@EAlexJ

The simple example of writing a 16 bit value into two 8 bit registers would look cleaner if concatenations could be assigned to.
The current implementation looks like this

X[1] = (unsigned<8>)(val>>8);
X[2] = (unsigned<8>)val; 

A more expressiv way would be:
X[1] :: X[2] = val;

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions