summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/pic16c62x/dis16c62x.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/pic16c62x/dis16c62x.c')
-rw-r--r--src/emu/cpu/pic16c62x/dis16c62x.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/emu/cpu/pic16c62x/dis16c62x.c b/src/emu/cpu/pic16c62x/dis16c62x.c
index 2da766d1d83..93aab3f5078 100644
--- a/src/emu/cpu/pic16c62x/dis16c62x.c
+++ b/src/emu/cpu/pic16c62x/dis16c62x.c
@@ -1,15 +1,15 @@
- /**************************************************************************\
- * Microchip PIC16C62X Emulator *
- * *
- * Based On *
- * Microchip PIC16C5X Emulator *
- * Copyright Tony La Porta *
- * Originally written for the MAME project. *
- * *
- * *
- * Notes : Data is expected to be read from source file as LSB first. *
- * *
- \**************************************************************************/
+ /**************************************************************************\
+ * Microchip PIC16C62X Emulator *
+ * *
+ * Based On *
+ * Microchip PIC16C5X Emulator *
+ * Copyright Tony La Porta *
+ * Originally written for the MAME project. *
+ * *
+ * *
+ * Notes : Data is expected to be read from source file as LSB first. *
+ * *
+ \**************************************************************************/
#include <stdio.h>
#include <string.h>
@@ -103,7 +103,7 @@ int main(int argc,char *argv[])
printf("$%03X: ",Counter);
for (ii = 0; ii < disasm_words; ii++)
{
- if (((Counter*2) + ii) > filelength) /* Past end of length to dump ? */
+ if (((Counter*2) + ii) > filelength) /* Past end of length to dump ? */
{
sprintf(String_Output,"???? dw %02.2X%02.2Xh (Past end of disassembly !)",Buffer[((Counter-1)*2)+1],Buffer[((Counter-1)*2)]);
}