// ============================================================================= // Module Name: IPat_Io_Output3 // Revision: 20220504a // Author: Altmo toolbox // Description: // + IO(output) module for simulation // // +-----+ // ci >-->|>buf>|----------------> pad // +--o--+ // | // oe_n >----+ // // ============================================================================= `timescale 1ns/1ns module IPat_Io_Output3 ( output pad, // PAD input ci, // Core to PAD input oe_n // Output Enable (negative) ); assign pad = (oe_n===1'b0)? ci : (oe_n===1'b1)? 1'bz : 1'bx; endmodule