blob: 43a05adc33d271294bc22110fba5865a730fb3e8 [file] [log] [blame]
Nico Huberc6bd3d32023-11-27 17:13:37 +01001with Interfaces.C;
2with System;
3
4package FS.FILO.Dev is
5
6 Procedure Read
7 (Buffer : in out Buffer_Type;
8 Offset : in Natural;
9 Success : out Boolean);
10
11private
12
13 function C_devread
14 (sector : Interfaces.C.unsigned_long;
15 byte_offset : Interfaces.C.unsigned_long;
16 byte_len : Interfaces.C.unsigned_long;
17 buf : System.Address)
18 return Interfaces.C.int
19 with
20 SPARK_Mode => Off,
21 Import => True,
22 Convention => C,
23 External_Name => "devopen";
24
25
26end FS.FILO.Dev;