// =============================================================================
// Module Name: IPat_Io_Output2
// Revision: 20220504a
// Author: Altmo toolbox
// Description:
//  + IO(output) module for simulation
//
//        +-----+   
// ci >-->|>buf>|----------------> pad
//        +-----+
//
// =============================================================================

`timescale 1ns/1ns

module IPat_Io_Output2 (
    output pad,    // PAD
    input  ci      // Core to PAD
);

    assign pad = ci;

endmodule