digi001
Full Member level 5

say i have a DSP talking with an FPGA on the XINT parallel bus.
For a DSP Read Action:
1.) DSP pulls FPGA_CS Low and Loads a specific Address
2.) Then on the next clock it pulls RD Low
How quickly are the conditions during always@ checked? Just once?
Is this the proper way to code this?
always@(negedge RD)
begin
if(address==4'b0001 && FPGA_CS==1'b0)
begin
For a DSP Read Action:
1.) DSP pulls FPGA_CS Low and Loads a specific Address
2.) Then on the next clock it pulls RD Low
How quickly are the conditions during always@ checked? Just once?
Is this the proper way to code this?
always@(negedge RD)
begin
if(address==4'b0001 && FPGA_CS==1'b0)
begin