1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-02-07 06:44:09 +08:00
oh/asiclib/hdl/asic_iddr.v
aolofsson 9e41b55f22 Adding default property to all cells
-Can be used to select between different cells (like sizes) that have the exact same logical function
2021-07-27 22:55:45 -04:00

28 lines
922 B
Verilog

//#############################################################################
//# Function: Dual data rate input buffer #
//# Copyright: OH Project Authors. All rights Reserved. #
//# License: MIT (see LICENSE file in OH repository) #
//#############################################################################
module asic_iddr #(parameter PROP = "DEFAULT") (
input clk, // clock
input in, // data input sampled on both edges of clock
output reg outrise, // rising edge sample
output reg outfall // falling edge sample
);
// Negedge Sample
always @ (negedge clk)
outfall <= in;
// Posedge Sample
reg inrise;
always @ (posedge clk)
inrise <= in;
// Posedge Latch (for hold)
always @ (clk or inrise)
if(~clk)
outrise <= inrise;
endmodule