aboutsummaryrefslogtreecommitdiffstats
path: root/src/ortho/mcode/ortho_mcode-jit.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/ortho/mcode/ortho_mcode-jit.ads')
-rw-r--r--src/ortho/mcode/ortho_mcode-jit.ads9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ortho/mcode/ortho_mcode-jit.ads b/src/ortho/mcode/ortho_mcode-jit.ads
new file mode 100644
index 000000000..c689a1e12
--- /dev/null
+++ b/src/ortho/mcode/ortho_mcode-jit.ads
@@ -0,0 +1,9 @@
+with System; use System;
+
+package Ortho_Mcode.Jit is
+ -- Set address of non-defined global variables or functions.
+ procedure Set_Address (Decl : O_Dnode; Addr : Address);
+
+ -- Get address of a global.
+ function Get_Address (Decl : O_Dnode) return Address;
+end Ortho_Mcode.Jit;