From 9a58f8a55d29e4edda7d9352b292be42642b50eb Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 2 Mar 2023 20:48:00 -0500 Subject: word, division compliance --- corewords.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'corewords.cpp') diff --git a/corewords.cpp b/corewords.cpp index ff09bcc..4de9413 100644 --- a/corewords.cpp +++ b/corewords.cpp @@ -102,14 +102,14 @@ execute: cell = state.pop(); dcell = state.pop(); dcell <<= sizeof(Cell) * 8; - dcell |= state.pop(); + dcell |= static_cast(state.pop()); state.push(dcell / cell); break; case 10: // mod ( d n -- n ) cell = state.pop(); dcell = state.pop(); dcell <<= sizeof(Cell) * 8; - dcell |= state.pop(); + dcell |= static_cast(state.pop()); state.push(dcell % cell); break; case 11: // peek -- cgit v1.2.3