MemTest.py (7632:acf43d6bbc18) MemTest.py (8436:5648986156db)
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

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

45 percent_uncacheable = Param.Percent(10,
46 "target uncacheable percentage")
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")
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

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

45 percent_uncacheable = Param.Percent(10,
46 "target uncacheable percentage")
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")