From: Dan White Date: Wed, 22 May 2013 21:57:32 +0000 (-0500) Subject: msp4th: fix comments X-Git-Tag: cheetah~55 X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=fe78256e04f99b2a7585819f4ace5584037d24cb;p=430.git msp4th: fix comments --- 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;