SConscript (12338:ae907b0a57c2) SConscript (12339:1141f798a210)
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;

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

27#
28# Authors: Jason Lowe-Power
29
30Import('*')
31
32SimObject('SimpleObject.py')
33SimObject('HelloObject.py')
34SimObject('SimpleMemobj.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;

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

27#
28# Authors: Jason Lowe-Power
29
30Import('*')
31
32SimObject('SimpleObject.py')
33SimObject('HelloObject.py')
34SimObject('SimpleMemobj.py')
35SimObject('SimpleCache.py')
35
36Source('simple_object.cc')
37Source('hello_object.cc')
38Source('goodbye_object.cc')
39Source('simple_memobj.cc')
36
37Source('simple_object.cc')
38Source('hello_object.cc')
39Source('goodbye_object.cc')
40Source('simple_memobj.cc')
41Source('simple_cache.cc')
40
41DebugFlag('HelloExample', "For Learning gem5 Part 2. Simple example debug flag")
42DebugFlag('SimpleMemobj', "For Learning gem5 Part 2.")
42
43DebugFlag('HelloExample', "For Learning gem5 Part 2. Simple example debug flag")
44DebugFlag('SimpleMemobj', "For Learning gem5 Part 2.")
45DebugFlag('SimpleCache', "For Learning gem5 Part 2.")