CARDSetBannerFormat

C Specification

#include <revolution/card.h>
#define CARDSetBannerFormat(stat, f)    \
((stat)->bannerFormat = (u8) (((stat)->bannerFormat &~CARD_STAT_BANNER_MASK)|(f)))

Arguments

stat Pointer to a CARDStat structure.
f Banner format of Memory Card. Specify the following for each case.
If there is no banner: CARD_STAT_BANNER_NONE
For RGB5A3: CARD_STAT_BANNER_RGB5A3
C8: CARD_STAT_BANNER_C8

Return Values

None.

Description

Sets the banner format of the Memory Card to the CARDStat structure.

Note: This function is provided for debugging. Do not use in programs.

See Also

Revision History

03/01/2006 Initial version.