aboutsummaryrefslogtreecommitdiffstats
path: root/alee-msp430.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alee-msp430.cpp')
-rw-r--r--alee-msp430.cpp6
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;