I have this module with a 256 bit width port, but I see only 1 bit port in the Debug net list. Can anyone help?
module test (
input aclk
,output reg [255:0] responce_tdata = 0
);
always @(posedge aclk) begin
responce_tdata <= 256'h1111111111111111111111111111111111111111111111111111111111111111;
end
endmodule