From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,d2c23a44c4c8fd6b,start X-Google-Attributes: gid103376,public From: Allen Krell Subject: fixed point types over an interface Date: 1997/02/07 Message-ID: <32FBB550.41C67EA6@efogm.msd.ray.com>#1/1 X-Deja-AN: 215188624 cc: jak@efogm.msd.ray.com content-type: text/plain; charset=us-ascii organization: Raytheon Missile Monopoly mime-version: 1.0 newsgroups: comp.lang.ada x-mailer: Mozilla 3.0 (X11; U; SunOS 4.1.3_U1 sun4m) Date: 1997-02-07T00:00:00+00:00 List-Id: With Ada83, is it safe to assume that two different compilers will store a fixed point type in the same way? For example Two processors are communicating over an interface. The applications for each processor are written/compiled using compilers from two different vendors. If each application has type FX_PT_TYPE is delta .001 range -100 .. +100; Variable : FX_PT_TYPE := 1.345; Will the binary representation of 'Variable' be the same with both compilers? Any help would be appreciated. Allen Krell jak@efogm.msd.ray.com