aboutsummaryrefslogtreecommitdiffstats
path: root/executor.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-09 14:12:26 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-09 14:12:26 -0500
commit92680120c6e3902644171c37eb7b271cf2d82250 (patch)
tree0efa3beb7fe505b3005770420cbaa9fa5d1f1f78 /executor.hpp
parent59ecb61463119e77637214e3c298c422c4537ea0 (diff)
fix indentation
Diffstat (limited to 'executor.hpp')
-rw-r--r--executor.hpp19
1 files changed, 8 insertions, 11 deletions
diff --git a/executor.hpp b/executor.hpp
index 485e82a..62afe5f 100644
--- a/executor.hpp
+++ b/executor.hpp
@@ -21,22 +21,19 @@
#include "corewords.hpp"
-//#include <iostream>
-
class Executor
{
public:
static int fullexec(State& state, Addr addr) {
state.pushr(0);
- state.ip = addr - 1;
-
- do {
- ++state.ip;
- //std::cout << "-- " << state.rsize() << "e " << state.ip << std::endl;
- CoreWords::run(state.dict.read(state.ip), state);
- } while (state.ip);
-
- return 0;
+ state.ip = addr - 1;
+
+ do {
+ ++state.ip;
+ CoreWords::run(state.dict.read(state.ip), state);
+ } while (state.ip);
+
+ return 0;
}
};