msp4th: fix comments
authorDan White <dan@whiteaudio.com>
Wed, 22 May 2013 21:57:32 +0000 (16:57 -0500)
committerDan White <dan@whiteaudio.com>
Wed, 22 May 2013 21:57:32 +0000 (16:57 -0500)
msp4th/msp4th.c

index 063cb95978e09cd361a841c6c701d9b0819ffa67..ce046e168ee531749c03474a1b01be1917306e42 100644 (file)
@@ -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;