Forum Discussion
Sameer-sahu
Occasional Contributor
2 years agoIssue with Connecting Intermediate Output to ALTDDIO_IN Input in FPGA Design
Hello everyone, I'm currently working on an FPGA design project and have encountered a problem that I hope to get some guidance on. The issue arises when trying to connect one of our intermediate ou...
sstrell
Super Contributor
2 years agoAs mentioned, DDIO IP is only for DDR data on I/O pins. I think you simply want to have separate clocked processes.
always @(posedge clk)
dataout_h <= ...
always @(negedge clk)
dataout_l <= ...