From 5bc9e4d2add7d2185b2c57a18ebd15b31f5366bd Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 9 Feb 2023 16:41:34 -0500 Subject: build as library; add small target --- executor.hpp | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'executor.hpp') diff --git a/executor.hpp b/executor.hpp index 62afe5f..66c675b 100644 --- a/executor.hpp +++ b/executor.hpp @@ -19,22 +19,12 @@ #ifndef ALEEFORTH_EXECUTOR_HPP #define ALEEFORTH_EXECUTOR_HPP -#include "corewords.hpp" +#include "types.hpp" class Executor { public: - static int fullexec(State& state, Addr addr) { - state.pushr(0); - state.ip = addr - 1; - - do { - ++state.ip; - CoreWords::run(state.dict.read(state.ip), state); - } while (state.ip); - - return 0; - } + static int fullexec(State&, Addr); }; #endif // ALEEFORTH_EXECUTOR_HPP -- cgit v1.2.3