| // =============================================== |
| // 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/s8iom0s8/icmrel/ipVault/opus/s8iom0s8/s8iom0s8_top_tp3/behavioral/verilog.v $ |
| // Author : guru |
| // Date : $Date: 2018/04/26 12:23:52 GMT $ |
| // $Revision: 1 $ |
| // =============================================== |
| // Description: behavioral model for s8iom0s8_corner_top_tp3 |
| `timescale 1ns/1ps |
| |
| module s8iom0s8_top_tp3 ( tp3, tp3_out |
| `ifdef USE_PG_PIN |
| , vddd, vssd |
| `endif |
| ); |
| |
| |
| inout tp3; |
| inout tp3_out; |
| |
| `ifdef USE_PG_PIN |
| inout vddd; |
| inout vssd; |
| wire pwr_good = (vddd===1'b1) && (vssd===1'b0); |
| `else |
| supply1 vddd; |
| supply0 vssd; |
| wire pwr_good = 1'b1; |
| `endif |
| |
| tranif1 (tp3, tp3_out, 1'b1); |
| |
| |
| endmodule |