Jacajack/hdl

Allow assignment of entire arrays

Opened this issue · 0 comments

Feature description

It's supported in bindings anyway. Make sure it works in declarations as well.

module X {}

impl X {
    const wire x[10];
    const ubus<1> y[10] = x;
}