SConscript (5390:5bacb5dc3ef6) SConscript (5629:1565c13d1483)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
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

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

27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Gabe Black
30
31Import('*')
32
33if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'x86':
34 SimObject('PC.py')
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
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

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

27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Gabe Black
30
31Import('*')
32
33if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'x86':
34 SimObject('PC.py')
35
36 Source('pc.cc')
35 Source('pc.cc')
36
37 SimObject('Cmos.py')
38 Source('cmos.cc')
39 TraceFlag('CMOS', 'Accesses to CMOS devices')