summaryrefslogtreecommitdiff
path: root/programs
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-10-15 12:23:23 -0700
committerJulian Blake Kongslie2022-10-15 12:26:13 -0700
commitf06ab846e3e297007afe65d9f815afff4638af0d (patch)
tree9e84c022a17afae0c1a292deb9b0ad2c8fa8acec /programs
parentImplement most of the OPR instructions. (diff)
downloadbiggolf-f06ab846e3e297007afe65d9f815afff4638af0d.tar.xz
Automatically discover programs and incorporate into the binary
Diffstat (limited to 'programs')
-rw-r--r--programs/programs.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/programs/programs.h b/programs/programs.h
new file mode 100644
index 0000000..dbe14e2
--- /dev/null
+++ b/programs/programs.h
@@ -0,0 +1,7 @@
1#pragma once
2
3#include <cstdint>
4#include <map>
5#include <string>
6
7extern const std::map<std::string, std::uint8_t *> programs;