mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2024-11-21 17:31:47 +00:00
Extra 1/2 FCLK IODONE delay
This commit is contained in:
parent
d14ca62644
commit
7c6787352b
@ -21,8 +21,9 @@ module IOBS(
|
||||
reg IOACTr = 0; always @(posedge CLK) IOACTr <= IOACT;
|
||||
|
||||
/* IODTACK input synchronization */
|
||||
reg IODONErf; always @(negedge CLK) IODONErf <= IODONEin;
|
||||
reg [1:0] IODONEr;
|
||||
always @(posedge CLK) IODONEr[1:0] <= {IODONEr[0], IODONEin};
|
||||
always @(posedge CLK) IODONEr[1:0] <= {IODONEr[0], IODONErf};
|
||||
wire IODONE = !IODONEr[1] && IODONEr[0];
|
||||
|
||||
/* Read data OE control */
|
||||
|
Loading…
Reference in New Issue
Block a user