aboutsummaryrefslogtreecommitdiffstats
path: root/state.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-25 08:25:31 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-25 08:25:31 -0500
commit34e5d76f9851f13a2c6611de065c229bafb17378 (patch)
tree7ee094718de01f949877d5f00b8fc5dc1f5f35d8 /state.hpp
parent0b88b4596e6265863e75e7aabcca52734e147fae (diff)
double-width mul/div; error strings
Diffstat (limited to 'state.hpp')
-rw-r--r--state.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/state.hpp b/state.hpp
index 22f0d74..69db2f6 100644
--- a/state.hpp
+++ b/state.hpp
@@ -25,8 +25,8 @@
#include <csetjmp>
#include <cstddef>
-constexpr unsigned DataStackSize = 8;
-constexpr unsigned ReturnStackSize = 8;
+constexpr unsigned DataStackSize = 16;
+constexpr unsigned ReturnStackSize = 16;
struct State
{