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.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c1ea0727ea6143f,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-11-01 08:37:13 PST From: "ulysses" Newsgroups: comp.lang.ada Subject: Can help me interpret this in Ada! Newbie here Date: Sat, 2 Nov 2002 00:37:09 +0800 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 NNTP-Posting-Host: 202.156.183.214 Message-ID: <3dc2adbc$1@news.starhub.net.sg> X-Trace: 2 Nov 2002 00:37:16 +0800, 202.156.183.214 Organization: StarHub Internet Pte Ltd Path: archiver1.google.com!news2.google.com!news1.google.com!newsfeed.stanford.edu!cyclone.bc.net!newsfeed.media.kyoto-u.ac.jp!newsgate.cuhk.edu.hk!cuhk-bullish!newsvr.starhub.net.sg!news.starhub.net.sg!202.156.183.214 Xref: archiver1.google.com comp.lang.ada:30287 Date: 2002-11-02T00:37:09+08:00 List-Id: Hi there, subtype SRU_ID_Type is Machine.Bit_4 range 0 .. 6 ; <--- what does it mean it Ada Ok does this means it's an array of 7 Machine.Bit_4 ?? Translate_SRU_ID_To_Fail_ID : constant array(SRU_ID_Type) of BIT_Fail_ID_Type := ( 0 => Antenna, 1 => Processor, 2 => Synthesizer, 3 => GUARD_Rx, 4 => Main_Rx, 5 => Power_Supply, 6 => Main_Tx ) ; Next qn, so how each of these represent in bit format ?? Thanks for any help ....