-
-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
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
Interface prototype #963
Comments
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;
} |
The block rggen_connect_bit_field_if::<RIF: inst InterfaceA, FIF: inst 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;
} |
interface can have functions so I think interface prototype is meaningful. proto interface InterfaceA {
function FuncA(a: input logic, b: input logic) -> logic;
modport mp {
FuncA: import,
}
} |
No description provided.
The text was updated successfully, but these errors were encountered: