source: rtems/c/src/lib/libbsp/i386/ts_386ex/tools/ts_1325_ada/ts1325-parallel.ads @ 16a384cf

4.104.114.84.95
Last change on this file since 16a384cf was 16a384cf, checked in by Joel Sherrill <joel.sherrill@…>, on 04/23/99 at 16:35:11

New BSP from Tony R. Ambardar <tonya@…> from the
University of British Columbia. The BSP is for:

Yes, this is the "entry model" of a series of boards from Technologic
Systems. Costs <$200 I believe. They have a WWW page at www.t-systems.com.
I am letting them know about the availability of this BSP too.

  • Property mode set to 100644
File size: 481 bytes
Line 
1with I386_Ports;
2use I386_Ports;
3
4package TS1325.Parallel is
5
6   procedure Read_Parallel_Port (Data: out Byte);
7
8   procedure Write_Parallel_Port (Data: in Byte);
9
10private
11
12   pragma Inline (Read_Parallel_Port, Write_Parallel_Port);
13
14   -- These are non-standard IO locations, which is why they are here instead
15   -- of in the I386_Ports package.
16
17   Parallel_Port_In: constant Port_Address := 16#75#;
18
19   Parallel_Port_Out: constant Port_Address := 16#74#;
20
21end TS1325.Parallel;
Note: See TracBrowser for help on using the repository browser.