void __4_14_1__MEDIA_INDEPENDENT_INTERFACE_MII_PORT_6() {
    /**
     * @group:       	4.14.1 MEDIA INDEPENDENT INTERFACE (MII) (PORT 6)
     *
     * @description: 	The media independent interface (MII) is specified in Clause 22 of the IEEE 802.3 standard. It provides a common inter-
     * 					face between PHY layer and MAC layer devices. The data interface is 4-bits wide and runs at one quarter the network
     * 					bit rate; either 2.5MHz in 10BASE-Te or 25MHz in 100BASE-TX (not encoded). Additional signals on the transmit side
     * 					indicate when data is valid or when an error occurs during transmission. Similarly, the receive side provides signals that
     * 					convey when the data is valid and without physical layer errors. For half duplex operation, the COL signal indicates if a
     * 					collision has occurred during transmission.
     * 					The MII interface operates in either PHY Mode or MAC Mode. Select PHY Mode when the port is connected to a pro-
     * 					cessor or other device with a MAC function; select MAC Mode when connecting to an external PHY. Note that the direc-
     * 					tion of the TX_CLK6, RX_CLK6, COL6 and CRS6 signals is affected by the PHY mode or MAC mode setting, while
     * 					other MII signals do not change direction.
     * 					MII mode is selected at reset by a configuration strap option on pins RXD6_3 and RXD6_2 for port 6. The Speed strap-
     * 					ping option (on pin RXD6_0 for port 6) should be set for 100/10 Mbps Mode. PHY Mode or MAC Mode is selected by a
     * 					configuration strap option on pin RXD6_1 (port 6). Refer to Section 3.2.1, "Configuration Straps," on page 18 for addi-
     * 					tional information.
     * 					The interface contains two distinct groups of signals, one for transmission and the other for reception. Table 4-29 and
     * 					Table 4-30 describe the signals used by the MII interface to connect to an external MAC or to an external PHY, respec-
     * 					tively.
     *
     *
     * 					TABLE 4-29: MII (PHY MODE) CONNECTION TO EXTERNAL MAC
     * 					+----------------------+---------------+--------------------------+
     * 					| MII Interface        | KSZ9477S      | External MAC Device      |
     * 					| Signals Description  | Signals in    | Signals                  |
     * 					|                      | PHY Mode      |                          |
     * 					+----------------------+---------------+--------------------------+
     * 					| Transmit Enable      | TX_EN6 (input)| TX_EN (output)           |
     * 					+----------------------+---------------+--------------------------+
     * 					| Transit Error        | TX_ER6 (input)| TX_ER (output)           |
     * 					+----------------------+---------------+--------------------------+
     * 					| Transmit Data Bits   | TXD6_[3:0]    | TXD[3:0] (output)        |
     * 					| [3:0]                | (input)       |                          |
     * 					+----------------------+---------------+--------------------------+
     * 					| Transmit Clock       | TX_CLK6       | TX_CLK (input)           |
     * 					|                      | (output)      |                          |
     * 					+----------------------+---------------+--------------------------+
     * 					| Collision Detection  | COL6 (output) | COL (input)              |
     * 					+----------------------+---------------+--------------------------+
     * 					| Carrier Sense        | CRS6 (output) | CRS (input)              |
     * 					+----------------------+---------------+--------------------------+
     * 					| Received Data Valid  | RX_DV6        | RX_DV (input)            |
     * 					|                      | (output)      |                          |
     * 					+----------------------+---------------+--------------------------+
     * 					| Receive Error        | RX_ER6        | RX_ER (input)            |
     * 					|                      | (output)      |                          |
     * 					+----------------------+---------------+--------------------------+
     * 					| Receive Data Bits    | RXD6[3:0]     | RXD[3:0] (input)         |
     * 					| [3:0]                | (output)      |                          |
     * 					+----------------------+---------------+--------------------------+
     * 					| Receive Clock        | RX_CLK6       | RX_CLK (input)           |
     * 					|                      | (output)      |                          |
     * 					+----------------------+---------------+--------------------------+
     *
     *
     * 					TABLE 4-30: MII (MAC MODE) CONNECTION TO EXTERNAL PHY
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| MII Interface Signals   | KSZ9477S Signals in MAC Mode | External PHY Device       |
     * 					| Description             |                              | Signals                   |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Transmit Enable         | RX_DV6 (output)              | TX_EN (input)             |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Transit Error           | RX_ER6 (output)              | TX_ER (input)             |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Transmit Data Bits [3:0]| RXD6_[3:0] (output)          | TXD[3:0] (input)          |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Transmit Clock          | RX_CLK6 (input)              | TX_CLK (output)           |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Collision Detection     | COL6 (input)                 | COL (output)              |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Carrier Sense           | CRS6 (input)                 | CRS (output)              |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Received Data Valid     | TX_EN6 (input)               | RX_DV (output)            |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Receive Error           | TX_ER6 (input)               | RX_ER (output)            |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Receive Data Bits [3:0]| TXD6_[3:0] (input)           | RXD[3:0] (output)         |
     * 					+-------------------------+------------------------------+---------------------------+
     * 					| Receive Clock           | TX_CLK6 (input)              | RX_CLK (output)           |
     * 					+-------------------------+------------------------------+---------------------------+
     *
     */
}