Rename DumpMem function -> memory_dump
authorHugo Villeneuve <hugo@hugovil.com>
Mon, 10 Feb 2014 04:47:58 +0000 (23:47 -0500)
committerHugo Villeneuve <hugo@hugovil.com>
Thu, 13 Feb 2014 05:25:18 +0000 (00:25 -0500)
src/cli/parser.y
src/common/memory.c
src/common/memory.h

index 82b632e..fecd6b2 100644 (file)
@@ -128,19 +128,19 @@ dump_mem:
        TOK_DE NUMBER NUMBER TOK_ENTER
        {
           log_debug("  Dump External Data Memory at $%04X, len %d", $2, $3);
-          DumpMem($2, $3, EXT_MEM_ID);
+          memory_dump($2, $3, EXT_MEM_ID);
        }
         |
        TOK_DI NUMBER NUMBER TOK_ENTER
        {
           log_debug("  Dump Internal Data Memory at $%04X, len %d", $2, $3);
-          DumpMem($2, $3, INT_MEM_ID);
+          memory_dump($2, $3, INT_MEM_ID);
        }
         |
        TOK_DP NUMBER NUMBER TOK_ENTER
        {
           log_debug("  Dump Program Memory at $%04X, len %d", $2, $3);
-          DumpMem($2, $3, PGM_MEM_ID);
+          memory_dump($2, $3, PGM_MEM_ID);
        }
        ;
 
index 4b17ffa..a2a33a5 100644 (file)
@@ -220,7 +220,7 @@ pgm_read_addr16(uint16_t base)
 
 /* Dump memory */
 void
-DumpMem(unsigned int address, int size, int memory_id)
+memory_dump(unsigned int address, int size, int memory_id)
 {
        int rc;
        int Offset, Column;
index 9b3bae1..f7911f7 100644 (file)
@@ -92,6 +92,6 @@ uint16_t
 pgm_read_addr16(uint16_t base);
 
 void
-DumpMem(unsigned int address, int size, int memory_id);
+memory_dump(unsigned int address, int size, int memory_id);
 
 #endif /* MEMORY_H */