/*  Menu definitions  */

#define PROJECT  0
#define EDIT     1
#define MODE     2
#define ANIMATE  3

/*  Project choices  */
#define ABOUT     0
#define LOAD      1
#define SAVE_BIN  2
#define SAVE_SRC  3
#define QUIT      4

/*  Save source choices  */
#define SAVE_C_SRC      0
#define SAVE_ASM_SRC    1
#define SAVE_MODII_SRC  2
#define SAVE_BAS_SRC    3

/*  About choices  */
#define AUTHOR   0
#define PROGRAM  1

/*  Edit choices  */
#define FLIP       0
#define CLR_DATA   1
#define CLR_COLOR  2
#define NEGATE     3

/*  Choices for flip  */
#define FLIP_XAXIS  0
#define FLIP_YAXIS  1

/*  Animate choices  */
#define DEFINE    0
#define START     1

/*  Mode options  */
#define CURRENT  0
#define ALL      1
#define FROM     2
#define UP_TO    3
#define EXCEPT   4
#define RANGE    5


