From fe78256e04f99b2a7585819f4ace5584037d24cb Mon Sep 17 00:00:00 2001 From: Dan White Date: Wed, 22 May 2013 16:57:32 -0500 Subject: [PATCH] msp4th: fix comments --- msp4th/msp4th.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msp4th/msp4th.c b/msp4th/msp4th.c index 063cb95..ce046e1 100644 --- a/msp4th/msp4th.c +++ b/msp4th/msp4th.c @@ -1348,11 +1348,11 @@ void execVM(int16_t opcode) msp4th_putchar(0x0A); break; - case 57: // 2* ( a -- a<<1 ) + case 57: // *2 ( a -- a<<1 ) TOS <<= 1; break; - case 58: // 2/ ( a -- a>>1 ) + case 58: // /2 ( a -- a>>1 ) TOS >>= 1; break; -- 2.25.1