Skip to content
This repository was archived by the owner on May 22, 2023. It is now read-only.

Commit a56e5a9

Browse files
committed
Fix and test memcpy
ref #168
1 parent 2d8f96e commit a56e5a9

File tree

5 files changed

+52
-18
lines changed

5 files changed

+52
-18
lines changed

src/core/nRF52832/core.gpr

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
with "switches";
22
with "basalt";
3+
with "gneiss";
34

45
project Core is
56

@@ -35,8 +36,10 @@ project Core is
3536
end Compiler;
3637

3738
package Linker is
38-
for Default_Switches ("Ada") use ("-Wl,--gc-sections", "-Wl,--print-memory-usage", "-T",
39-
Gneiss_Root & "/src/core/nRF52832/link.ld");
39+
for Default_Switches ("Ada") use ("-Wl,--gc-sections", "-Wl,--print-memory-usage",
40+
-- "-nostdlib", "-nostdinc",
41+
-- "-L" & Gneiss_Root & "/ada_runtime/build/nrf52/obj/adalib",
42+
"-T", Gneiss_Root & "/src/core/nRF52832/link.ld");
4043
end Linker;
4144

4245
package Binder is

src/core/nRF52832/main.adb

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
with Serial;
22
with Componolit.Runtime.Drivers.GPIO;
3-
with Sparkfun.Debug;
43

54
procedure Main with
65
SPARK_Mode
76
is
87
package GPIO renames Componolit.Runtime.Drivers.GPIO;
9-
procedure Debug is new Sparkfun.Debug.Debug (Integer);
10-
A : String (1 .. 1024);
8+
S1 : String (1 .. 128);
9+
function F (P : Positive) return String;
10+
function F (P : Positive) return String
11+
is
12+
S : constant String (1 .. P) := (others => 'X');
13+
begin
14+
return S & ASCII.CR & ASCII.LF;
15+
end F;
1116
begin
1217
GPIO.Configure (18, GPIO.Port_Out);
1318
GPIO.Write (18, GPIO.Low);
14-
Sparkfun.Debug.Initialize;
1519
Serial.Initialize;
16-
Debug (1);
17-
Serial.Print ("Hello World!");
18-
Debug (2);
19-
for I in A'Range loop
20-
A (I) := 'A';
21-
end loop;
22-
Serial.Print (A);
23-
Debug (3);
24-
loop
25-
null;
26-
end loop;
20+
Serial.Print ("Gneiss 0.3.0" & ASCII.CR & ASCII.LF);
21+
Serial.Print ("Testing memcpy..." & ASCII.CR & ASCII.LF);
22+
S1 := (others => 'X');
23+
Serial.Print (S1 & ASCII.CR & ASCII.LF);
24+
Serial.Print ("Testing secondary stack..." & ASCII.CR & ASCII.LF);
25+
Serial.Print (F (64));
26+
Serial.Print ("Finished." & ASCII.CR & ASCII.LF);
2727
end Main;
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package body Gneiss.Component with
2+
SPARK_Mode => Off
3+
is
4+
5+
procedure Construct (Cap : Capability)
6+
is
7+
begin
8+
Component_Construct (Cap);
9+
end Construct;
10+
11+
procedure Destruct
12+
is
13+
begin
14+
Component_Destruct;
15+
end Destruct;
16+
17+
procedure Vacate (Cap : Capability;
18+
Status : Component_Status)
19+
is
20+
begin
21+
null;
22+
end Vacate;
23+
24+
end Gneiss.Component;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package Gneiss_Internal with
2+
SPARK_Mode
3+
is
4+
5+
type Capability is null record;
6+
7+
end Gneiss_Internal;

0 commit comments

Comments
 (0)