Hi,
I apologize for the delay !!
Strange but true the problem was that the application " HIWAVE.EXE" was not present in the folder \\Prog ,something was wrong with the installation .
The second problems is not solved .
Excuse me for my english is not very good .
When you want to create the abs or abs19 files with different features depending on the define of something you can use different targets
for example
word variable;
if you want to have different version of your abs the first one with
variable = 0x01;
and the second one with
variable= 0x0f ;
you can create a new target with an ohter name cloning tha standard target and in the compiler you can define a name as you want for example _BIS_
in the project you can write
#ifdef _BIS_
variable = 0x0f;
#else
variable = 0x01;
#endif
if you change in the new target in the linker application the name of the abs file ,when you compile the two targets in the BIN folder you will have two 6 files 3 for the standard target and 3 for the clone .
*.abs
*.abs19
*.map