Thomas Heijligen | 62268ee | 2023-11-27 15:10:41 +0000 | [diff] [blame] | 1 | with Interfaces; |
| 2 | |
Nico Huber | 98417fc | 2023-11-30 16:46:25 +0100 | [diff] [blame] | 3 | use Interfaces; |
| 4 | |
Thomas Heijligen | 5c43abc | 2023-12-11 15:24:36 +0000 | [diff] [blame] | 5 | package FILO is |
Thomas Heijligen | d1e0457 | 2023-11-27 14:28:55 +0000 | [diff] [blame] | 6 | |
Nico Huber | 9c04187 | 2023-12-12 13:24:55 +0100 | [diff] [blame^] | 7 | type Blockdev_Length is range 0 .. Interfaces.Unsigned_64'Last; |
| 8 | subtype Blockdev_Offset is Blockdev_Length range 0 .. Blockdev_Length'Last - 1; |
| 9 | subtype Partition_Length is Blockdev_Length; |
| 10 | subtype Partition_Offset is Blockdev_Offset; |
Nico Huber | 481ff84 | 2023-12-12 13:19:49 +0100 | [diff] [blame] | 11 | |
| 12 | BLOCK_SIZE : constant := 512; |
| 13 | type Block_Offset is range 0 .. Partition_Offset'Last / BLOCK_SIZE; |
| 14 | |
Nico Huber | 98417fc | 2023-11-30 16:46:25 +0100 | [diff] [blame] | 15 | subtype Index_Type is Natural range 0 .. Natural'Last - 1; |
| 16 | subtype Index_Type16 is Index_Type range 0 .. Index_Type'Last - 1; |
| 17 | subtype Index_Type32 is Index_Type16 range 0 .. Index_Type16'Last - 2; |
| 18 | |
| 19 | type Buffer_Type is array (Index_Type range <>) of Unsigned_8; |
| 20 | |
| 21 | function Read_LE16 (Buf : Buffer_Type; Off : Index_Type16) return Unsigned_16 |
| 22 | is |
Nico Huber | cd6b7ec | 2023-12-04 15:21:26 +0100 | [diff] [blame] | 23 | (Shift_Left (Unsigned_16 (Buf (Off + 1)), 8) or Unsigned_16 (Buf (Off))) |
| 24 | with |
| 25 | Pre => Buf'First <= Off and Off + 1 <= Buf'Last; |
Nico Huber | 98417fc | 2023-11-30 16:46:25 +0100 | [diff] [blame] | 26 | |
| 27 | function Read_LE32 (Buf : Buffer_Type; Off : Index_Type32) return Unsigned_32 |
| 28 | is |
| 29 | (Shift_Left (Unsigned_32 (Buf (Off + 3)), 24) or |
| 30 | Shift_Left (Unsigned_32 (Buf (Off + 2)), 16) or |
| 31 | Shift_Left (Unsigned_32 (Buf (Off + 1)), 8) or |
Nico Huber | cd6b7ec | 2023-12-04 15:21:26 +0100 | [diff] [blame] | 32 | Unsigned_32 (Buf (Off))) |
| 33 | with |
| 34 | Pre => Buf'First <= Off and Off + 3 <= Buf'Last; |
Thomas Heijligen | d1e0457 | 2023-11-27 14:28:55 +0000 | [diff] [blame] | 35 | |
Thomas Heijligen | 5c43abc | 2023-12-11 15:24:36 +0000 | [diff] [blame] | 36 | end FILO; |