Ronit Nallagatla
Ronit Nallagatla
This PR implements a lint rule check that forbids unpacked array declarations. Relevant Issues: - closes dalance/svlint#279
I'd like to implement a rule that disallows unpacked array declarations. Unpacked arrays are not guaranteed to be represented as contiguous memory, and can cause issues with synthesis tools especially...
This rule could be an extension of the **case_default** rule that allows the case default to be implicitly defined. For example, ```sv module M; always_comb begin y = 0; case(x)...