/**
*
* Write/Read 32 bit value to/from LED_CONTROL user logic slave registers.
*
* @param BaseAddress is the base address of the LED_CONTROL device.
* @param RegOffset is the offset from the slave register to write to or read from.
* @param Value is the data written to the register.
*
* @return Data is the data from the user logic slave register.
*
* @note
* C-style signature:
* void LED_CONTROL_mWriteSlaveRegn(Xuint32 BaseAddress, unsigned RegOffset, Xuint32 Value)
* Xuint32 LED_CONTROL_mReadSlaveRegn(Xuint32 BaseAddress, unsigned RegOffset)
*
*/
#define LED_CONTROL_mWriteSlaveReg0(BaseAddress, RegOffset, Value) \
XIo_Out32((BaseAddress) + (LED_CONTROL_SLV_REG0_OFFSET) + (RegOffset), (Xuint32)(Value))