3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00
yosys/tests/simple/signed_full_slice.v
Zachary Snow e833c6a418 verilog: use derived module info to elaborate cell connections
- Attempt to lookup a derived module if it potentially contains a port
  connection with elaboration ambiguities
- Mark the cell if module has not yet been derived
- This can be extended to implement automatic hierarchical port
  connections in a future change
2021-10-25 18:25:50 -07:00

30 lines
575 B
Verilog

module pass_through_a(
input wire [31:0] inp,
output wire [31:0] out
);
assign out[31:0] = inp[31:0];
endmodule
module top_a(
input wire signed [31:0] inp,
output wire signed [31:0] out
);
pass_through_a pt(inp[31:0], out[31:0]);
endmodule
// tests both module declaration orderings
module top_b(
input wire signed [31:0] inp,
output wire signed [31:0] out
);
pass_through_b pt(inp[31:0], out[31:0]);
endmodule
module pass_through_b(
input wire [31:0] inp,
output wire [31:0] out
);
assign out[31:0] = inp[31:0];
endmodule