SConscript revision 12854
14762Snate@binkert.org# Copyright 2018 Google, Inc. 24762Snate@binkert.org# 34762Snate@binkert.org# Redistribution and use in source and binary forms, with or without 44762Snate@binkert.org# modification, are permitted provided that the following conditions are 54762Snate@binkert.org# met: redistributions of source code must retain the above copyright 64762Snate@binkert.org# notice, this list of conditions and the following disclaimer; 74762Snate@binkert.org# redistributions in binary form must reproduce the above copyright 84762Snate@binkert.org# notice, this list of conditions and the following disclaimer in the 94762Snate@binkert.org# documentation and/or other materials provided with the distribution; 104762Snate@binkert.org# neither the name of the copyright holders nor the names of its 114762Snate@binkert.org# contributors may be used to endorse or promote products derived from 124762Snate@binkert.org# this software without specific prior written permission. 134762Snate@binkert.org# 144762Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 154762Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 164762Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 174762Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 184762Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 194762Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 204762Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 214762Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 224762Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 234762Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 244762Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 254762Snate@binkert.org# 264762Snate@binkert.org# Authors: Gabe Black 274762Snate@binkert.org 284762Snate@binkert.orgImport('*') 294762Snate@binkert.org 304762Snate@binkert.orgif env['USE_SYSTEMC']: 314762Snate@binkert.org Source('sc_int_base.cc') 324762Snate@binkert.org Source('sc_int_mask.cc') 334762Snate@binkert.org Source('sc_length_param.cc') 344762Snate@binkert.org Source('sc_nbexterns.cc') 35 Source('sc_nbutils.cc') 36 Source('sc_signed.cc') 37 Source('sc_uint_base.cc') 38 Source('sc_unsigned.cc') 39