[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-user: problems with icarus ..
- To: geda-user@seul.org
- Subject: gEDA-user: problems with icarus ..
- From: Lars Segerlund <lars.segerlund@comsys.se>
- Date: Thu, 21 Aug 2003 15:30:54 +0200
- Delivered-to: archiver@seul.org
- Delivered-to: geda-user-outgoing@seul.org
- Delivered-to: geda-user@seul.org
- Delivery-date: Thu, 21 Aug 2003 09:31:17 -0400
- Reply-to: geda-user@seul.org
- Sender: owner-geda-user@seul.org
- User-agent: Mozilla/5.0 (X11; U; Linux i586; en-US; rv:1.4) Gecko/20030714 Debian/1.4-2
I am trying to synthesice a simple adder, and I am getting errors like
this.
Does anybody know whats going wrong ?
module addc(A, B, CIN, COUT, Q);
input A, B, CIN;
output COUT, Q;
assign Q=A ^ B ^ CIN;
assign COUT= (A & B) | (A & CIN) | (B & CIN);
endmodule
bash-2.05b$ ../tools/bin/iverilog -S addc.v
Passes
bash-2.05b$ ../tools/bin/iverilog -tfpga addc.v
UNSUPPORTED LOGIC TYPE: 19
UNSUPPORTED LOGIC TYPE: 19
UNSUPPORTED LOGIC TYPE: 1
UNSUPPORTED LOGIC TYPE: 1
UNSUPPORTED LOGIC TYPE: 1
bash-2.05b$
Gives the above, the problem is that I cannot make sence of the error
messages.
/ thanks, Lars Segerlund.