From: Hugo Villeneuve Date: Mon, 25 Nov 2013 00:03:54 +0000 (-0500) Subject: Fix syntax error in comments X-Git-Tag: v2.0.0~62 X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=72e335016292f093ffbf90955014661b75f00f78;p=emu8051.git Fix syntax error in comments --- diff --git a/src/cpu8051.c b/src/cpu8051.c index 30c8cca..f9dd936 100644 --- a/src/cpu8051.c +++ b/src/cpu8051.c @@ -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; diff --git a/src/pswwin.c b/src/pswwin.c index 14eccd1..94f733c 100644 --- a/src/pswwin.c +++ b/src/pswwin.c @@ -1,5 +1,5 @@ /* - * pswwin.cpp + * pswwin.c * * Copyright (C) 1999 Jonathan St-André * Copyright (C) 1999 Hugo Villeneuve