diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-10 11:36:30 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-10 11:36:30 -0500 |
commit | b31036813c7706527e2067392660c9068447fa2c (patch) | |
tree | df1e9cf14b10a4faa7ff553e84152d0a58d9ab52 /alee-msp430.cpp | |
parent | 7eeb515c5dc57658ac98554f44780a1f9a6fd2a4 (diff) |
size reduction and refactoring
Diffstat (limited to 'alee-msp430.cpp')
-rw-r--r-- | alee-msp430.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alee-msp430.cpp b/alee-msp430.cpp index 4116118..3121dc1 100644 --- a/alee-msp430.cpp +++ b/alee-msp430.cpp @@ -17,9 +17,9 @@ */ #include "alee.hpp" +#include "libalee/ctype.hpp" #include "splitmemdict.hpp" -#include <cctype> #include <msp430.h> #include "core.fth.h" @@ -149,10 +149,10 @@ void user_sys(State& state) break; case 2: { auto addr = state.pop(); - *((uint8_t *)addr) = state.pop(); } + *reinterpret_cast<uint8_t *>(addr) = state.pop(); } break; case 3: - state.push(*((uint8_t *)state.pop())); + state.push(*reinterpret_cast<uint8_t *>(state.pop())); break; default: break; |