From 44f215f44dbd9641dd672fa380ff92fa587f96d4 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Tue, 6 Mar 2007 11:16:15 -0800 Subject: [PATCH] Python parameters types need analogous C++ types --HG-- extra : convert_revision : d068dfec69b28d48fc299a4108e165decfaaace7 --- src/python/m5/params.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/python/m5/params.py b/src/python/m5/params.py index 7c60a8554..9892df97c 100644 --- a/src/python/m5/params.py +++ b/src/python/m5/params.py @@ -361,6 +361,7 @@ class MemorySize(CheckedInt): self._check() class MemorySize32(CheckedInt): + cxx_type = 'uint32_t' size = 32 unsigned = True def __init__(self, value):