aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/corewords.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-11 10:21:51 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-11 10:21:51 -0500
commite41b124320011cb1451f9869710a110058ee95aa (patch)
treea192a89a8c6a4b7bfab7d35ecf0cabe323048394 /libalee/corewords.hpp
parentbc3e952b487365fdf5e60e9fcfa0841c23972e30 (diff)
update documentation
Diffstat (limited to 'libalee/corewords.hpp')
-rw-r--r--libalee/corewords.hpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/libalee/corewords.hpp b/libalee/corewords.hpp
index 33f4fc5..5798f59 100644
--- a/libalee/corewords.hpp
+++ b/libalee/corewords.hpp
@@ -22,19 +22,28 @@
#include "types.hpp"
#include "state.hpp"
+/**
+ * To be implemented by the user, this function is called when the `sys` word
+ * is executed.
+ */
void user_sys(State&);
class CoreWords
{
public:
constexpr static std::size_t WordCount = 33;
-
- constexpr static Cell Immediate = (1 << 5);
-
constexpr static int Semicolon = 26;
+ /**
+ * Finds execution token that corresponds to the given word.
+ * Returns -1 if not found.
+ */
static int findi(const char *);
static int findi(State&, Word);
+
+ /**
+ * Executes the given CoreWord execution token using the given state.
+ */
static void run(unsigned int, State&);
constexpr static char wordsarr[] =