void __5_4__MDIO_MANAGEABLE_DEVICE_MMD_REGISTERS_INDIRECT() {
/**
 * @header:     	5.4 MDIO MANAGEABLE DEVICE (MMD) REGISTERS (INDIRECT)
 * @address:
 * @port:
 * @phy_register:
 *
 * @description:	MMD registers provide indirect read/write access to up to 32 MMD device addresses with each device supporting up to
 *					65,536 16-bit registers, as defined in Clause 22 of the IEEE 802.3 Specification. However, the KSZ9477S uses only a
 *					small fraction of the available registers. Refer to Table 5-7, "MMD Register Map" for a list of accessible MMD device
 *					addresses and their associated register addresses. Detailed descriptions of the supported MMD registers are provided
 *					in the following subsections. Additional information on the MIIM interface is provided in Section 4.12.3, "MII Manage-
 *					ment (MIIM) Interface," on page 63.
 *					The following two standard port registers serve as the portal registers to access the indirect MMD registers.
 *					• PHY MMD Setup Register
 *					• PHY MMD Data Register
 *
 * @note:
 *
 *
 * @table:			TABLE 5-7: MMD REGISTER MAP
 *					+----------------------+------------------------+------------------------------------------+
 *					| Device Address (hex) | Register Address (hex) | Description                              |
 *					+----------------------+------------------------+------------------------------------------+
 *					| 1h                   | ACh                    | MMD Signal Quality Channel A Register    |
 *					| 1h                   | ADh                    | MMD Signal Quality Channel B Register    |
 *					| 1h                   | AEh                    | MMD Signal Quality Channel C Register    |
 *					| 1h                   | AFh                    | MMD Signal Quality Channel D Register    |
 *					| 2h                   | 00h                    | MMD LED Mode Register                    |
 *					| 7h                   | 3Ch                    | MMD EEE Advertisement Register           |
 *					| 1Ch                  | 25h                    | MMD Quiet-WIRE Configuration 0 Register  |
 *					| 1Ch                  | 26h                    | MMD Quiet-WIRE Configuration 1 Register  |
 *					| 1Ch                  | 27h                    | MMD Quiet-WIRE Configuration 2 Register  |
 *					| 1Ch                  | 28h                    | MMD Quiet-WIRE Configuration 3 Register  |
 *					| 1Ch                  | 29h                    | MMD Quiet-WIRE Configuration 4 Register  |
 *					| 1Ch                  | 2Ah                    | MMD Quiet-WIRE Configuration 5 Register  |
 *					| 1Ch                  | 2Bh                    | MMD Quiet-WIRE Configuration 6 Register  |
 *					| 1Ch                  | 2Ch                    | MMD Quiet-WIRE Configuration 7 Register  |
 *					| 1Ch                  | 2Dh                    | MMD Quiet-WIRE Configuration 8 Register  |
 *					| 1Ch                  | 2Ee                    | MMD Quiet-WIRE Configuration 9 Register  |
 *					| 1Ch                  | 2Fh                    | MMD Quiet-WIRE Configuration 10 Register |
 *					| 1Ch                  | 30h                    | MMD Quiet-WIRE Configuration 11 Register |
 *					| 1Ch                  | 31h                    | MMD Quiet-WIRE Configuration 12 Register |
 *					| 1Ch                  | 32h                    | MMD Quiet-WIRE Configuration 13 Register |
 *					| 1Ch                  | 33h                    | MMD Quiet-WIRE Configuration 14 Register |
 *					| 1Ch                  | 34h                    | MMD Quiet-WIRE Configuration 15 Register |
 *					+----------------------+------------------------+------------------------------------------+
 *
 * @example_write: 	MMD Register Write
 *               	Write MMD - Device Address 2h, Register 00h = 0010h to enable single-LED mode.
 *               	1. Write the PHY MMD Setup Register with 0002h // Set up register address for MMD – Device Address 2h.
 *               	2. Write the PHY MMD Data Register with 0000h // Select Register 00h of MMD – Device Address 2h.
 *               	3. Write the PHY MMD Setup Register with 4002h // Select register data for MMD – Device Address 2h, Reg. 00h.
 *               	4. Write the PHY MMD Data Register with 0010h // Write value 0010h to MMD – Device Address 2h, Reg. 00h.
 *
 * @example_read:  	MMD Register Read
 *               	Read MMD - Device Address 7h, Register 3Ch for the LED mode status. Optional auto-increment is used.
 *               	1. Write the PHY MMD Setup Register with 0007h // Set up register address for MMD – Device Address 7h.
 *               	2. Write the PHY MMD Data Register with 003Ch // Select Register 3Ch of MMD – Device Address 7h.
 *               	3. Write the PHY MMD Setup Register with 8007h // Select register data for MMD – Device Address 7h, Reg. 3Ch.
 *               	4. Read the PHY MMD Data Register // Read data in MMD – Device Address 7h, Reg. 3Ch.
 */
}