blob: f489965d411cbbfc89592c1add688d1c7666ef36 [file] [log] [blame]
// ===============================================
// Copyright 2011, Cypress Semiconductor Corporation.
//
// This software is owned by Cypress Semiconductor Corporation (Cypress)
// and is protected by United States copyright laws and international
// treaty provisions. Therefore, you must treat this software like any
// other copyrighted material (e.g., book, or musical recording), with
// the exception that one copy may be made for personal use or
// evaluation. Reproduction, modification, translation, compilation, or
// representation of this software in any other form (e.g., paper,
// magnetic, optical, silicon, etc.) is prohibited without the express
// written permission of Cypress.
//
// Disclaimer: Cypress makes no warranty of any kind, express or implied,
// with regard to this material, including, but not limited to, the
// implied warranties of merchantability and fitness for a particular
// purpose. Cypress reserves the right to make changes without further
// notice to the materials described herein. Cypress does not assume any
// liability arising out of the application or use of any product or
// circuit described herein. Cypress' products described herein are
// not authorized for use as components in life-support devices.
//
// This software is protected by and subject to worldwide patent
// coverage, including U.S. and foreign patents. Use may be limited by
// and subject to the Cypress Software License Agreement.
//
// ===============================================
// File : $File: //depot/icm/proj/s8fmlt/icmrel/ipVault/opus/s8fmlt/s8fmlt_eqcoldel/behavioral/verilog.v $
// Author : ixi
// Date : August 15, 2011
// $Revision: 1 $
// ===============================================
// // Description:
`timescale 1ns/1ps
module s8fmlt_eqcoldel (out, in, vgnd, vnb, vpb, vpwr);
output out;
input in;
input vgnd;
input vnb;
input vpb;
input vpwr;
wire supply_ok =(vnb===1'b0) & (vgnd===1'b0) & (vpb===1'b1) & (vpwr===1'b1);
wire out;
assign #1 out = supply_ok ? in : 1'bx;
endmodule