From 970bbb473c81975d3c7366260c8228fd4fcc8c4d Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 9 Mar 2023 09:16:12 -0500 Subject: linting; reduce msp430 binary size --- libalee/state.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libalee/state.cpp') diff --git a/libalee/state.cpp b/libalee/state.cpp index ea6c601..b3c98b1 100644 --- a/libalee/state.cpp +++ b/libalee/state.cpp @@ -55,11 +55,11 @@ State::Error State::execute(Addr addr) std::size_t State::size() const noexcept { - return std::distance(dstack, static_cast(dsp)) + 1; + return std::distance(dstack, static_cast(dsp)); } std::size_t State::rsize() const noexcept { - return std::distance(rstack, static_cast(rsp)) + 1; + return std::distance(rstack, static_cast(rsp)); } -- cgit v1.2.3