source: rtems/c/src/lib/libbsp/i386/ts_386ex/tools/ts_1325_ada/ts1325-parallel.adb @ 3299388d

4.104.114.84.95
Last change on this file since 3299388d 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: 313 bytes
Line 
1package body TS1325.Parallel is
2
3   procedure Read_Parallel_Port (Data: out Byte) is
4   begin
5      Inport (Parallel_Port_In, Data);
6   end Read_Parallel_Port;
7
8   procedure Write_Parallel_Port (Data: in Byte) is
9   begin
10      Outport (Parallel_Port_Out, Data);
11   end Write_Parallel_Port;
12
13end TS1325.Parallel;
Note: See TracBrowser for help on using the repository browser.