From 72e335016292f093ffbf90955014661b75f00f78 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Sun, 24 Nov 2013 19:03:54 -0500 Subject: [PATCH] Fix syntax error in comments --- src/cpu8051.c | 4 ++-- src/pswwin.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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 -- 2.20.1