diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 16:41:34 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 16:41:34 -0500 |
commit | 5bc9e4d2add7d2185b2c57a18ebd15b31f5366bd (patch) | |
tree | 6cb3b598dc8d6a86936bf236e8fc93df83770ada /executor.hpp | |
parent | 92680120c6e3902644171c37eb7b271cf2d82250 (diff) |
build as library; add small target
Diffstat (limited to 'executor.hpp')
-rw-r--r-- | executor.hpp | 14 |
1 files changed, 2 insertions, 12 deletions
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 |