always@smart
Full Member level 4
add bus with a ripper
Hi all,
I could not manage to split the bus using FPGA Advantage in the "Block Diagram" entry. Below is an example
----------------------------------------------------------
module aaa0(a0,.......);
input a0[7:0];
.........
endmodule
----------------------------------------------------------
module aaa1(a1,......)
input a1[7:0];
endmodule
----------------------------------------------------------
I wanna to split the bus to be like:
module top(A,.....)
input A[15:0];
aaa0 (.a0(A[7:0]),.......);
aaa1(.a1(A[15:7]),.......)
endmodule
----------------------------------------------------------
when I tried to connect the A to both a0 and a1, both a0 and a1 have become a0[15:0] and a1[15:0], so how can I change them to a0[7:0] and a1[15:7]??
Thank you in advance
Hi all,
I could not manage to split the bus using FPGA Advantage in the "Block Diagram" entry. Below is an example
----------------------------------------------------------
module aaa0(a0,.......);
input a0[7:0];
.........
endmodule
----------------------------------------------------------
module aaa1(a1,......)
input a1[7:0];
endmodule
----------------------------------------------------------
I wanna to split the bus to be like:
module top(A,.....)
input A[15:0];
aaa0 (.a0(A[7:0]),.......);
aaa1(.a1(A[15:7]),.......)
endmodule
----------------------------------------------------------
when I tried to connect the A to both a0 and a1, both a0 and a1 have become a0[15:0] and a1[15:0], so how can I change them to a0[7:0] and a1[15:7]??
Thank you in advance