fix comments - vx32 - Local 9vx git repository for patches.
       
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
 (DIR) commit 4c6921cc9725d57fa634febc5c2babcd74ccc02e
 (DIR) parent cbe18969643799a96835e4eb726bd2a96a5c8de6
 (HTM) Author: Jesus Galan Lopez (yiyus) <yiyu.jgl@gmail.com>
       Date:   Thu, 10 Jun 2010 20:07:23 +0200
       
       fix comments
       
       Diffstat:
         src/9vx/a/devether.c                |       2 +-
         src/9vx/mmu.c                       |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/src/9vx/a/devether.c b/src/9vx/a/devether.c
       @@ -10,7 +10,7 @@
        
        #include "etherif.h"
        
       -#define MEMSIZE (256<<20)        // same as ../a/devether.c:13 (TODO: var)
       +#define MEMSIZE (256<<20)        // same as ../mmu.c:29 (TODO: var)
        
        static Ether *etherxx[MaxEther];
        
 (DIR) diff --git a/src/9vx/mmu.c b/src/9vx/mmu.c
       @@ -26,7 +26,7 @@ int tracemmu;
         * Plan 9 assumes this, and while it's not a ton of work to break that
         * assumption, it was easier not to.
         */
       -#define MEMSIZE (256<<20)        // same as ../mmu.c:29 (TODO: var)
       +#define MEMSIZE (256<<20)        // same as ../a/devether.c:13 (TODO: var)
        
        static int pagefile;
        static char* pagebase;