aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/corewords.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-11-13 09:13:32 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-11-13 09:13:32 -0500
commitaf51fb5bdfd9c338b7cf8b75b792e04a2667af5e (patch)
tree0d6baf72acf05d263dcd8ed0b13888fb6265df81 /libalee/corewords.cpp
parent5162349f925dfc48f7269538b9cdb1c06df8d5ff (diff)
add LIBALEE_SECTION; minor fixes
Diffstat (limited to 'libalee/corewords.cpp')
-rw-r--r--libalee/corewords.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/libalee/corewords.cpp b/libalee/corewords.cpp
index e3ba6b3..b768163 100644
--- a/libalee/corewords.cpp
+++ b/libalee/corewords.cpp
@@ -16,11 +16,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
-#include "corewords.hpp"
-#include "parser.hpp"
+#include "alee.hpp"
#include <utility>
+LIBALEE_SECTION
void find(State& state, Word word)
{
Cell tok = 0;
@@ -37,6 +37,7 @@ void find(State& state, Word word)
state.push(imm);
}
+LIBALEE_SECTION
void CoreWords::run(Cell ins, State& state)
{
Cell cell;
@@ -252,6 +253,7 @@ execute:
ip += sizeof(Cell);
}
+LIBALEE_SECTION
Cell CoreWords::findi(State& state, Word word)
{
return findi(word.begin(&state.dict), word.size());