From: Dan White Date: Thu, 16 May 2013 19:18:18 +0000 (-0500) Subject: msp4th: fix comments X-Git-Tag: cheetah~65 X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=5ef7ba259ddb525538350fa9509296ba153a000b;p=430.git msp4th: fix comments --- diff --git a/msp4th/msp4th.c b/msp4th/msp4th.c index 263cfaf..5ce37e8 100644 --- a/msp4th/msp4th.c +++ b/msp4th/msp4th.c @@ -1141,7 +1141,7 @@ void execN(int16_t opcode) } break; - case 13: // .hb ( a -- ) + case 13: // hb. ( a -- ) printHexByte(popMathStack()); msp4th_putchar(' '); break; @@ -1214,7 +1214,7 @@ void execN(int16_t opcode) pushMathStack(mathStackStart - mathStackPtr); break; - case 28: // .h ( a -- ) + case 28: // h. ( a -- ) printHexWord(popMathStack()); msp4th_putchar(' '); break;