OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [wide_boolean_pkg.ads] - Rev 714

Go to most recent revision | Compare with Previous | Blame | View Log

package Wide_Boolean_Pkg is
 
   type TBOOL is new BOOLEAN;
   for  TBOOL use (FALSE => 0, TRUE => 1);
   for  TBOOL'SIZE use 8;
 
   type TUINT32 is mod (2 ** 32);
   for  TUINT32'SIZE use 32;
 
   type TREC is
      record
         H : TUINT32;
         B : TBOOL;
      end record;
   for TREC use
      record
         H at 0 range 0..31;
         B at 4 range 0..31;
      end record;
 
   procedure Modify (LH : in out TUINT32; LB : in out TBOOL);
   pragma export(C, Modify, "Modify");
 
end Wide_Boolean_Pkg;
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.