summaryrefslogtreecommitdiffstats
path: root/content/zettel/3c6a.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/zettel/3c6a.md')
-rw-r--r--content/zettel/3c6a.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/content/zettel/3c6a.md b/content/zettel/3c6a.md
new file mode 100644
index 0000000..85e8ba4
--- /dev/null
+++ b/content/zettel/3c6a.md
@@ -0,0 +1,18 @@
++++
+title = "Base pointer of main memory"
+author = "Yann Herklotz"
+tags = []
+categories = []
+backlinks = ["3c6"]
+forwardlinks = ["3c6b"]
+zettelid = "3c6a"
++++
+
+One of the current limitations of function calls in HTL is that they
+don't support any loads or stores in these functions. This is because
+Vericert currently only generates one global memory. Therefore, there
+should not be any pointers in the program that have a base pointer that
+is different to the base pointer of the main function's stack.
+
+One possible solution to this is to find what the base of the stack is,
+and then prove if we ever have a base pointer.