AldeBasiClib/exemple.c

41 lines
484 B
C
Raw Permalink Normal View History

2016-04-29 22:01:47 +02:00
#include "fxlib.h"
#include "AldeBasiClib.h"
2016-04-29 22:02:02 +02:00
int A;
2016-04-29 22:01:47 +02:00
int AddIn_main(int isAppli, unsigned short OptionNum)
{
Cls;
Locate(2,3,Test);
2016-04-29 22:02:02 +02:00
A = 1;
If( A == 1)
Then
Locate(5,5,Test2);
IfEnd
2016-04-29 22:01:47 +02:00
RclVRAM;
2016-04-29 22:02:02 +02:00
While(1)
WhileEnd
2016-04-29 22:01:47 +02:00
}
#pragma section _BR_Size
unsigned long BR_Size;
#pragma section
#pragma section _TOP
int InitializeSystem(int isAppli, unsigned short OptionNum)
{
return INIT_ADDIN_APPLICATION(isAppli, OptionNum);
}
#pragma section