SConscript (12336:9ead840035df) SConscript (12337:97857a19fb72)
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;

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

25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
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')
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;

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

25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
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')
33
34Source('simple_object.cc')
34
35Source('simple_object.cc')
36Source('hello_object.cc')
37Source('goodbye_object.cc')
38
39DebugFlag('HelloExample', "For Learning gem5 Part 2. Simple example debug flag")