initial commit
[A2k.git] / src / i386.ads
blob22450634be3f63e04eb6d8c730f156a0848ab5d5
1 with Interfaces; use Interfaces;
2 with Ada.Unchecked_Conversion;
3 with System;
5 package I386 is
7 pragma Pure;
9 subtype Unsigned_8 is Interfaces.Unsigned_8;
10 subtype Unsigned_16 is Interfaces.Unsigned_16;
11 subtype Unsigned_32 is Interfaces.Unsigned_32;
13 function To_Address is new Ada.Unchecked_Conversion
14 (Unsigned_32, System.Address);
16 end I386;