void __5_3_4__VLAN_TABLE() {
    /**
 * @header:     	5.3.4 VLAN TABLE
 * @address:
 * @port:
 * @phy_register:
 *
 * @description:	An internal VLAN Table is used for VLAN lookup. If 802.1Q VLAN mode is enabled (Switch Lookup Engine Control 0
 *					Register), this table will be used to retrieve the VLAN information that is associated with the ingress packet. The table
 *					holds 4096 entries - one for each possible VLAN. The table must be set up before 802.1Q VLAN is enabled. The VLAN
 *					table is accessed one entry at a time using the following indirect registers:
 *					• VLAN Table Entry 0 Register
 *					• VLAN Table Entry 1 Register
 *					• VLAN Table Entry 2 Register
 *					• VLAN Table Index Register
 *					• VLAN Table Access Control Register
 *					The table data fields are described in Figure 5-4 and Table 5-4.
 *
 * @note:
 *
 * @figure:			FIGURE 5-4:   VLAN TABLE STRUCTURE
 *					+------------+
 *					| Entry # 0  |
 *					+------------+
 *					| Entry # 1  |
 *					+------------+
 *					| Entry # 2  |
 *					+------------+
 *					| Entry # 3  |
 *					+------------+      +---+----+----------+------+-----+-------+---------+
 *					| Entry # 4  |----->| V | FO | PRIORITY | MSTP | FID | UNTAG | FORWARD |
 *					+------------+      +-+-+--+-+-----+----+--+----+--+--+---+---+----+----+
 *					|            |        |    |       |       |       |      |        |
 *					|     ...    |        |    |       |       |       |      |        +---- PORT FORWARD
 *					|            |        |    |       |       |       |      +------------- PORT UNTAG
 *					+------------+        |    |       |       |       +-------------------- FILTER ID
 *					| Entry #4094|        |    |       |       +---------------------------- MSTP INDEX
 *					+------------+        |    |       +------------------------------------ PRIORITY
 *					| Entry #4095|        |    +-------------------------------------------- FORWARD OPTION
 *					+------------+        +------------------------------------------------- VALID
 *
 *
 *
 *	@table:			TABLE 5-4: VLAN TABLE DATA FIELDS
 *					+----------------+-------------+-------------------------------------------------------+
 *					| Field          | Size (bits) | Description                                           |
 *					+----------------+-------------+-------------------------------------------------------+
 *					| VALID          |      1      | When 1, indicates that the table entry is valid.      |
 *					+----------------+-------------+-------------------------------------------------------+
 *					| FORWARD OPTION |      1      | When 1, forward to VLAN port table (PORT FORWARD      |
 *					|                |             | field). When 0, see Table 4-9, "VLAN Forwarding"      |
 *					|                |             | for details.                                          |
 *					+----------------+-------------+-------------------------------------------------------+
 *					| PRIORITY       |      3      | Priority value for this VID.                          |
 *					+----------------+-------------+-------------------------------------------------------+
 *					| MSTP INDEX     |      3      | Multiple Spanning Tree Protocol index.                |
 *					+----------------+-------------+-------------------------------------------------------+
 *					| FID            |      7      | Filter ID value. It is combined with destination      |
 *					|                |             | address and hashed to index the Address Lookup Table. |
 *					+----------------+-------------+-------------------------------------------------------+
 *					| PORT UNTAG     |      7      | (1 per port) When 1, untag at that egress port.       |
 *					|                |             | When 0, don't untag.                                  |
 *					+----------------+-------------+-------------------------------------------------------+
 *					| PORT FORWARD   |      7      | (1 per port) VLAN port membership list. There is one  |
 *					|                |             | bit per port, starting with the LSB which             |
 *					|                |             | corresponds to port 1. A bit value of 1 indicates     |
 *					|                |             | the associated port is included in the membership     |
 *					|                |             | list for that VID. When 0, that port is excluded.     |
 *					+----------------+-------------+-------------------------------------------------------+
 */
}