Hi,
Thanks for your reply.
I tried to attach fifo's data output to JA1, one of Pmods. I have checked the constraint file called xillydemo.xdc. It says ports of JA1 are constrained to PS_GPIO[31:24]. In order to break the demo's loopback. I modified the code as:
- Code: Select all
fifo_8x2048 fifo_8
(
.clk(bus_clk),
.srst(!user_w_write_8_open && !user_r_read_8_open),
.din(user_w_write_8_data),
.wr_en(user_w_write_8_wren),
.rd_en(user_r_read_8_rden),
.dout(PS_GPIO[31:24]),
.full(user_w_write_8_full),
.empty(user_r_read_8_empty)
);
But when I tried to rebuild the project, it failed in synthesis process because of those pins having multiple drivers. Could you please help me to point out where I did wrong?