1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00
oh/common/hdl/oh_pwr_isohi.v

26 lines
919 B
Coq
Raw Normal View History

//#############################################################################
//# Function: Isolation buffer (HIGH) for multi supply domains #
//#############################################################################
//# Author: Andreas Olofsson #
//# License: MIT (see LICENSE file in OH! repository) #
//#############################################################################
module oh_pwr_isohi #(parameter DW = 1 // width of data inputs
)
(
input iso,// active low isolation signal
input [DW-1:0] in, // input signal
output [DW-1:0] out // out = iso | in
);
`ifdef CFG_ASIC
asic_iso_hi iiso [DW-1:0] (.iso(iso),
.in(in[DW-1:0]),
.out(out[DW-1:0]));
`else
assign out[DW-1:0] = {(DW){iso}} | in[DW-1:0];
`endif
endmodule // oh_pwr_isohi