comp.lang.ada
 help / color / mirror / Atom feed
From: "Corey Ashford" <yeroca7@rocketmail.com>
Subject: Re: question re Ada equivalent of C function
Date: 1998/02/21
Date: 1998-02-21T00:00:00+00:00	[thread overview]
Message-ID: <6cnj5d$bjq$1@usenet.rational.com> (raw)
In-Reply-To: 34EEFF9C.1D01FA5D@stellar1.com



David Fisher wrote in message <34EEFF9C.1D01FA5D@stellar1.com>...
>Sorry if this is a bit basic, but learning Ada on one's own can be, er,
>challenging.
>
>What are the Ada equivalents of the C functions, inp and outp, used to
>read a byte from or send one to a memory address?
>
>Thanks!
>
>David Fisher
>Fisher Research Corporation
>

There are a number of ways to do this in Ada.  Here's one fairly simple one:

with unchecked_conversion;
with system;

type byte is mod 2*8;
type byte_access is access byte;
function to_byte_access is new unchecked_conversion(system.address,
byte_access);

function inp(addr: system.address) return byte is
begin
    return to_byte_access(addr).all;
end inp;

procedure outp(addr: system.address; value: byte) is
begin
    to_byte_access(addr).all := value;
end outp;








  parent reply	other threads:[~1998-02-21  0:00 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-02-21  0:00 question re Ada equivalent of C function David Fisher
1998-02-21  0:00 ` Robert Dewar
1998-02-21  0:00 ` Corey Ashford [this message]
1998-02-22  0:00   ` Nick Roberts
1998-02-21  0:00 ` Brian Rogoff
1998-02-21  0:00   ` Robert Dewar
1998-02-22  0:00     ` Brian Rogoff
1998-02-21  0:00   ` Jerry van Dijk
1998-02-21  0:00     ` David Fisher
1998-02-22  0:00       ` Jerry van Dijk
1998-02-22  0:00         ` Robert Dewar
1998-02-22  0:00           ` Andi Kleen
1998-02-22  0:00       ` Simon Wright
1998-02-22  0:00         ` Simon Wright
1998-02-22  0:00   ` Nick Roberts
1998-02-22  0:00     ` frc
1998-02-22  0:00 ` Larry Kilgallen
1998-02-22  0:00   ` Robert Dewar
1998-02-22  0:00   ` frc
1998-02-22  0:00     ` Linux/POSIX packages for GNAT Markus Kuhn
1998-02-22  0:00       ` Andi Kleen
1998-02-22  0:00         ` Samuel Tardieu
1998-02-23  0:00           ` Nick Roberts
1998-02-23  0:00             ` Samuel Tardieu
1998-03-05  0:00             ` Testing exception handlers James M. Darlack
1998-02-22  0:00         ` Linux/POSIX packages for GNAT Markus Kuhn
1998-02-22  0:00           ` Robert Dewar
1998-02-22  0:00       ` Robert Dewar
1998-02-23  0:00         ` Andi Kleen
1998-02-22  0:00           ` Robert Dewar
1998-02-23  0:00             ` Markus Kuhn
1998-02-23  0:00               ` Robert Dewar
1998-02-23  0:00         ` Markus Kuhn
1998-02-23  0:00           ` Robert Dewar
1998-02-23  0:00             ` Markus Kuhn
1998-02-24  0:00               ` question re Ada equivalent of C function Dale Stanbrough
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox