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,FREEMAIL_FROM, INVALID_MSGID,XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,fd3c44bd8f938354,start X-Google-Attributes: gid103376,public From: "Philippe Bourzeix" Subject: Parallel port Date: 2000/03/05 Message-ID: #1/1 X-Deja-AN: 593403181 X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-Complaints-To: abuse@proxad.net X-Trace: nnrp3.proxad.net 952262050 213.228.20.239 (Sun, 05 Mar 2000 14:14:10 CET) Organization: Guest of ProXad - France X-MSMail-Priority: Normal NNTP-Posting-Date: Sun, 05 Mar 2000 14:14:10 CET Newsgroups: comp.lang.ada Date: 2000-03-05T00:00:00+00:00 List-Id: I would like to access to my parallel port. To read and write in the register 16#378, 16#379, 16#37A But i have no idea how to do it. I have started something like that but it doesn't work : type reg is new integer; for reg'size use 8; --register is 8 bits type regptr is access all reg for reg'address use 16#378#; I need help ...