SConscript (8191:777459f7c61f) | SConscript (8436:5648986156db) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2009 The Hewlett-Packard Development Company 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 19 unchanged lines hidden (view full) --- 28# 29# Authors: Nathan Binkert 30 31Import('*') 32 33if not env['RUBY']: 34 Return() 35 | 1# -*- mode:python -*- 2 3# Copyright (c) 2009 The Hewlett-Packard Development Company 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 19 unchanged lines hidden (view full) --- 28# 29# Authors: Nathan Binkert 30 31Import('*') 32 33if not env['RUBY']: 34 Return() 35 |
36SimObject('Cache.py') | 36SimObject('AbstractMemory.py') |
37SimObject('Sequencer.py') | 37SimObject('Sequencer.py') |
38SimObject('DirectoryMemory.py') | |
39SimObject('MemoryControl.py') 40SimObject('WireBuffer.py') 41SimObject('RubySystem.py') 42 43Source('DMASequencer.cc') 44Source('DirectoryMemory.cc') 45Source('SparseMemory.cc') 46Source('CacheMemory.cc') 47Source('MemoryControl.cc') 48Source('WireBuffer.cc') 49Source('MemoryNode.cc') 50Source('PersistentTable.cc') 51Source('RubyPort.cc') 52Source('Sequencer.cc', Werror=False) 53Source('System.cc') 54Source('TimerTable.cc') | 38SimObject('MemoryControl.py') 39SimObject('WireBuffer.py') 40SimObject('RubySystem.py') 41 42Source('DMASequencer.cc') 43Source('DirectoryMemory.cc') 44Source('SparseMemory.cc') 45Source('CacheMemory.cc') 46Source('MemoryControl.cc') 47Source('WireBuffer.cc') 48Source('MemoryNode.cc') 49Source('PersistentTable.cc') 50Source('RubyPort.cc') 51Source('Sequencer.cc', Werror=False) 52Source('System.cc') 53Source('TimerTable.cc') |