Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

FEEDBACK code IN VERLOG

Status
Not open for further replies.

kunaldekate

Newbie level 3
Joined
Dec 14, 2009
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
nagpur
Activity points
1,295
I am working on Arbiter where the algorithm is i-SLIP,
where i am using Verilog code and working on XILINX FPGA,
i am getting problem with feedback circuit where i am unable to conect my output to input with ctrl signal please help me
 

HDL attempts to generate hardware. You have defined a combinatorial loop. eg:
assign x = x +1;
makes no sense as a combinatorial circuit. It will work as a sequential circuit. eg:
always @ (posedge clk) x <= x +1;
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top