aboutsummaryrefslogtreecommitdiffstats
path: root/msp430
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-18 12:40:46 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-03-18 12:40:46 -0400
commitd36bb13f52b3899fd0f57e38f00d97e2c3a0f627 (patch)
treee1a2780f42bf82c6fcbbd9c2219d55dbc8f03c53 /msp430
parent74753670d582e4ceeaba383e4ce360eb13004a35 (diff)
-Wconversion
Diffstat (limited to 'msp430')
-rw-r--r--msp430/alee-msp430.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/msp430/alee-msp430.cpp b/msp430/alee-msp430.cpp
index 0ec6c88..b4f1b04 100644
--- a/msp430/alee-msp430.cpp
+++ b/msp430/alee-msp430.cpp
@@ -153,7 +153,7 @@ void user_sys(State& state)
break;
case 3:
{ auto addr = state.pop();
- *reinterpret_cast<uint8_t *>(addr) = state.pop(); }
+ *reinterpret_cast<uint8_t *>(addr) = state.pop() & 0xFFu; }
break;
case 4:
state.push(*reinterpret_cast<uint8_t *>(state.pop()));