Target Deployment Technology
Location: <OldInstallDir>/…/atu/target/oldTdp/ana)
Template: templatea.xdp
Here is the list of adaptations that must be reported in
the TDP editor in the section
Parser Settings->Standard specification for Ada83
These settings correspond to the previous use of Ada83 with the old Analyzer (without using Code Coverage).
- replace the boolean type defintion with
type Boolean is _internal(BOOLEAN);
- replace the character type definition with
type Character is _internal(CHARACTER_8);
- delete the universal_integer and universal_float type definitions
- delete all function definitions for all types.
- add after the FLOAT type definition:
type _INTERNAL_INTEGER is _internal(INTERNAL_INTEGER);
type _INTERNAL_FLOAT is _internal(INTERNAL_FLOAT83);
The first is preferred; the second one corresponds to the case where Code Coverage is not available.