mirror of
https://github.com/aolofsson/oh.git
synced 2025-02-07 06:44:09 +08:00
-Should be ifdef, since this is a global. You will never be doing and not an asic at the same time!
28 lines
1009 B
Verilog
28 lines
1009 B
Verilog
//#############################################################################
|
|
//# Function: Achive high latch #
|
|
//#############################################################################
|
|
//# Author: Andreas Olofsson #
|
|
//# License: MIT (see LICENSE file in OH! repository) #
|
|
//#############################################################################
|
|
|
|
module oh_lat1 #(parameter DW = 1 //data width
|
|
)
|
|
( input clk, // clk, latch when clk=1
|
|
input [DW-1:0] in, // input data
|
|
output [DW-1:0] out // output data (stable/latched when clk=0)
|
|
);
|
|
|
|
`ifdef CFG_ASIC
|
|
asic_lat1 i_lat [DW-1:0] (.clk(clk),
|
|
.in(in[DW-1:0]),
|
|
.out(out[DW-1:0]));
|
|
`else
|
|
reg [DW-1:0] out_reg;
|
|
always @ (clk or in)
|
|
if (clk)
|
|
out_reg[DW-1:0] <= in[DW-1:0];
|
|
assign out[DW-1:0] = out_reg[DW-1:0];
|
|
`endif
|
|
|
|
endmodule // oh_lat1
|