MemTest.py (8436:5648986156db) MemTest.py (8832:247fee427324)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 38 unchanged lines hidden (view full) ---

47 progress_interval = Param.Counter(1000000,
48 "progress report interval (in accesses)")
49 trace_addr = Param.Addr(0, "address to trace")
50
51 test = Port("Port to the memory system to test")
52 functional = Port("Port to the functional memory used for verification")
53 suppress_func_warnings = Param.Bool(False,
54 "suppress warnings when functional accesses fail.\n")
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 38 unchanged lines hidden (view full) ---

47 progress_interval = Param.Counter(1000000,
48 "progress report interval (in accesses)")
49 trace_addr = Param.Addr(0, "address to trace")
50
51 test = Port("Port to the memory system to test")
52 functional = Port("Port to the functional memory used for verification")
53 suppress_func_warnings = Param.Bool(False,
54 "suppress warnings when functional accesses fail.\n")
55 sys = Param.System(Parent.any, "System Parameter")
56