stats: update stats for mmap() change.
[gem5.git] / src / dev / mips / access.h
index dbf3661b32a66da6695331d1a9fd853caf8b653e..416b80590f81f9f1deccd8afd830c2d2536f3307 100755 (executable)
@@ -48,37 +48,37 @@ typedef unsigned long uint64_t;
 // This structure hacked up from simos
 struct MipsAccess
 {
-                uint32_t       inputChar;              // 00: Placeholder for input
-    uint32_t   last_offset;            // 04: must be first field
-    uint32_t   version;                // 08:
-    uint32_t   numCPUs;                // 0C:
-    uint32_t   intrClockFrequency;     // 10: Hz
+    uint32_t    inputChar;              // 00: Placeholder for input
+    uint32_t    last_offset;            // 04: must be first field
+    uint32_t    version;                // 08:
+    uint32_t    numCPUs;                // 0C:
+    uint32_t    intrClockFrequency;     // 10: Hz
 
     // Loaded kernel
-    uint32_t   kernStart;              // 14:
-    uint32_t   kernEnd;                // 18:
-    uint32_t   entryPoint;             // 1c:
+    uint32_t    kernStart;              // 14:
+    uint32_t    kernEnd;                // 18:
+    uint32_t    entryPoint;             // 1c:
 
                 // console simple output stuff
-                uint32_t       outputChar;             // 20: Placeholder for output
+                uint32_t        outputChar;             // 20: Placeholder for output
 
     // console disk stuff
-    uint32_t   diskUnit;               // 24:
-    uint32_t   diskCount;              // 28:
-    uint32_t   diskPAddr;              // 2c:
-    uint32_t   diskBlock;              // 30:
-    uint32_t   diskOperation;          // 34:
+    uint32_t    diskUnit;               // 24:
+    uint32_t    diskCount;              // 28:
+    uint32_t    diskPAddr;              // 2c:
+    uint32_t    diskBlock;              // 30:
+    uint32_t    diskOperation;          // 34:
 
                 // MP boot
-    uint32_t   cpuStack[64];           // 70:
+    uint32_t    cpuStack[64];           // 70:
 
     /* XXX There appears to be a problem in accessing
      * unit64_t in the console.c file. They are treated
      * like uint32_int and result in the wrong address for
      * everything below. This problem should be investigated.
      */
-    uint64_t   cpuClock;               // 38: MHz
-    uint64_t   mem_size;               // 40:
+    uint64_t    cpuClock;               // 38: MHz
+    uint64_t    mem_size;               // 40:
 };
 
 #endif // __MIPS_ACCESS_H__