Fix syntax error in comments
authorHugo Villeneuve <hugo@hugovil.com>
Mon, 25 Nov 2013 00:03:54 +0000 (19:03 -0500)
committerHugo Villeneuve <hugo@hugovil.com>
Mon, 2 Dec 2013 01:52:42 +0000 (20:52 -0500)
src/cpu8051.c
src/pswwin.c

index 30c8cca..f9dd936 100644 (file)
@@ -492,7 +492,7 @@ cpu8051_get_instruction_size(unsigned char opcode)
        return InstSizesTbl[opcode];
 }
 
-/* Display instruction menmonic. */
+/* Display instruction mnemonic. */
 void
 cpu8051_disasm_mnemonic(unsigned char OpCode, char *buf)
 {
@@ -630,7 +630,7 @@ cpu8051_Disasm(unsigned int Address, char *Text)
        for (; len < 17;)
                len += sprintf(&Text[len], " ");
 
-       /* Display instruction menmonic. */
+       /* Display instruction mnemonic. */
        len += sprintf(&Text[len], "%s ",
                              InstTextTbl[InstTypesTbl[OpCode]]);
        ArgTblOfs = OpCode << 2;
index 14eccd1..94f733c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * pswwin.cpp
+ * pswwin.c
  *
  * Copyright (C) 1999 Jonathan St-AndrĂ©
  * Copyright (C) 1999 Hugo Villeneuve <hugo@hugovil.com>