diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-26 16:48:02 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-26 16:48:02 -0500 |
commit | 73e9023af0ea4ee56dc1d94190a14919f535eedc (patch) | |
tree | 7a6abdbf890fb92109a6210776961a4fe50f0e64 /source/core.hpp | |
parent | 3038586ad459d58e3a621f155e5d2df69096bd39 (diff) |
catch stack errors
Diffstat (limited to 'source/core.hpp')
-rw-r--r-- | source/core.hpp | 4 |
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. */ |