All pastes #329017 Raw Edit

rb bootloader

public text v1 · immutable
#329017 ·published 2007-01-26 09:47 UTC
rendered paste body
int main(void)
{
    int nButton;

    PlatformInit(); /* model-specific inits */

    nButton = ButtonPressed();

    if (nButton == 3)
    {   
        tImage* pImage;
        pImage = GetStartImage(nButton);
        DecompressStart(pImage);
    }
    else
    {
        MiniMon();
    }

    return 0;
}