I'm trying to write a test script for my opening menu. For some reason at the start up it says Start up Failure. The same thing happens when I try to debug it. Could you help me find any mistakes I could have made?

Thanks,
Masna

////////////////////////////////////////////////////////////////////
#include <acknex.h>
#include <default.c>

////////////////////////////////////////////////////////////////////

BMAP* Help_Button=
{
pos_x = 300;
pos_y = 300;
layer = 1;
bmap = Help_Button;
flags = OVERLAY | VISIBLE;
}

/////////////////////////////////////////////////////////////////////

BMAP* Play_Button=
{
pos_x = 300;
pos_y = 400;
layer = 2;
bmap = Play_Button;
flags = OVERLAY | VISIBLE;
}

/////////////////////////////////////////////////////////////////////


function main()
{
video_mode = 7;
screen_color.blue = 150;
}