naveeneceng
Newbie level 2
- Joined
- Jan 21, 2013
- Messages
- 2
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,298
I have a sub module
module RCAF(a,b,s,cout);
input [3:0] a,b;
output [3:0] s;
output cout;
wire c1,c2,c3;
here input a b are 4 input buses...
if i want to instantiate the above module
RCAF A1((a.s2),(b.s3), // here s2 nd s3 are 4 bit buses.
(s.s5),
(cout.c1));
Say if i want to pass bitwise say i want to pass particular value for a[0]. i wrote
RCAF A1((a[0].s2[0]),(a[1].s2[1]),(a[3].s2[3]),(b[0].s3[0]), // here s2 nd s3 are 4 bit buses.
(s.s5),
(cout.c1));
but while running synthesis in Xilinx ISE it shows error as
MUL_FOUR.v" line 57 Too many port connections in instance 'A3' of module 'RCAF'
How to do that.....????? help me please