aboutsummaryrefslogtreecommitdiffstats
path: root/source/core.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/core.hpp')
-rw-r--r--source/core.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/core.hpp b/source/core.hpp
index f5149cf..4e4c1e6 100644
--- a/source/core.hpp
+++ b/source/core.hpp
@@ -31,8 +31,8 @@ extern void getinput();
*/
constexpr auto fexit = WordWrap<[] {
extern FuncList IP;
- extern Cell *RP;
- IP = reinterpret_cast<FuncList>(*RP--);
+ extern Cell rpop();
+ IP = reinterpret_cast<FuncList>(rpop());
}>();
void jump(FuncList ip); /** Jumps to the given instruction pointer. */