<b><font color="#ff0000">
{start code}
PUBLIC Nat8 pcf8574_get_Byte( Pcf8574 const xdata *Object )
{
    ASSERT( Object != NULL);

    i2c_swi2c_Read( Object->I2cAddress
                  , &( Object->Buffer )
                  , 1 
                  );

    return ( Object->Buffer );
}
{end code}
</font color></b>