SConscript (12337:97857a19fb72) | SConscript (12338:ae907b0a57c2) |
---|---|
1# -*- coding: utf-8 -*- 2# Copyright (c) 2016 Jason Lowe-Power 3# All rights reserved. 4# 5# Redistribution and use in source and binary forms, with or without 6# modification, are permitted provided that the following conditions are 7# met: redistributions of source code must retain the above copyright 8# notice, this list of conditions and the following disclaimer; --- 17 unchanged lines hidden (view full) --- 26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27# 28# Authors: Jason Lowe-Power 29 30Import('*') 31 32SimObject('SimpleObject.py') 33SimObject('HelloObject.py') | 1# -*- coding: utf-8 -*- 2# Copyright (c) 2016 Jason Lowe-Power 3# All rights reserved. 4# 5# Redistribution and use in source and binary forms, with or without 6# modification, are permitted provided that the following conditions are 7# met: redistributions of source code must retain the above copyright 8# notice, this list of conditions and the following disclaimer; --- 17 unchanged lines hidden (view full) --- 26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27# 28# Authors: Jason Lowe-Power 29 30Import('*') 31 32SimObject('SimpleObject.py') 33SimObject('HelloObject.py') |
34SimObject('SimpleMemobj.py') |
|
34 35Source('simple_object.cc') 36Source('hello_object.cc') 37Source('goodbye_object.cc') | 35 36Source('simple_object.cc') 37Source('hello_object.cc') 38Source('goodbye_object.cc') |
39Source('simple_memobj.cc') |
|
38 39DebugFlag('HelloExample', "For Learning gem5 Part 2. Simple example debug flag") | 40 41DebugFlag('HelloExample', "For Learning gem5 Part 2. Simple example debug flag") |
42DebugFlag('SimpleMemobj', "For Learning gem5 Part 2.") |
|