We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Interface prototype may be the same as concrete interface in almost cases.
proto interface ProtoA #( param X: u32, ) { var a: logic; modport A { a: input, } } interface InterfaceA for ProtoA #( param X: u32, ) { var a: logic; modport A { a: input, } }
So generic bound by interface may be sufficient instead of adding interface prototype.
block rggen_connect_bit_field_if::<RIF: InterfaceA, FIF: InterfaceA, LSB: const, WIDTH: const> { assign FIF.valid = RIF.valid; assign FIF.read_mask = RIF.read_mask[LSB+:WIDTH]; assign FIF.write_mask = RIF.write_mask[LSB+:WIDTH]; assign FIF.write_data = RIF.write_data[LSB+:WIDTH]; assign RIF.read_data[LSB+:WIDTH] = FIF.read_data; assign RIF.value[LSB+:WIDTH] = FIF.value; }
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: