__init__.py revision 5081
14123Sbinkertn@umich.edu# Copyright (c) 2007 The Hewlett-Packard Development Company
24123Sbinkertn@umich.edu# All rights reserved.
34123Sbinkertn@umich.edu#
44123Sbinkertn@umich.edu# Redistribution and use of this software in source and binary forms,
54123Sbinkertn@umich.edu# with or without modification, are permitted provided that the
64123Sbinkertn@umich.edu# following conditions are met:
74123Sbinkertn@umich.edu#
84123Sbinkertn@umich.edu# The software must be used only for Non-Commercial Use which means any
94123Sbinkertn@umich.edu# use which is NOT directed to receiving any direct monetary
104123Sbinkertn@umich.edu# compensation for, or commercial advantage from such use.  Illustrative
114123Sbinkertn@umich.edu# examples of non-commercial use are academic research, personal study,
124123Sbinkertn@umich.edu# teaching, education and corporate research & development.
134123Sbinkertn@umich.edu# Illustrative examples of commercial use are distributing products for
144123Sbinkertn@umich.edu# commercial advantage and providing services using the software for
154123Sbinkertn@umich.edu# commercial advantage.
164123Sbinkertn@umich.edu#
174123Sbinkertn@umich.edu# If you wish to use this software or functionality therein that may be
184123Sbinkertn@umich.edu# covered by patents for commercial use, please contact:
194123Sbinkertn@umich.edu#     Director of Intellectual Property Licensing
204123Sbinkertn@umich.edu#     Office of Strategy and Technology
214123Sbinkertn@umich.edu#     Hewlett-Packard Company
224123Sbinkertn@umich.edu#     1501 Page Mill Road
234123Sbinkertn@umich.edu#     Palo Alto, California  94304
244123Sbinkertn@umich.edu#
254123Sbinkertn@umich.edu# Redistributions of source code must retain the above copyright notice,
264123Sbinkertn@umich.edu# this list of conditions and the following disclaimer.  Redistributions
274123Sbinkertn@umich.edu# in binary form must reproduce the above copyright notice, this list of
284123Sbinkertn@umich.edu# conditions and the following disclaimer in the documentation and/or
294123Sbinkertn@umich.edu# other materials provided with the distribution.  Neither the name of
304123Sbinkertn@umich.edu# the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
314123Sbinkertn@umich.edu# contributors may be used to endorse or promote products derived from
326214Snate@binkert.org# this software without specific prior written permission.  No right of
334123Sbinkertn@umich.edu# sublicense is granted herewith.  Derivatives of the software and
344123Sbinkertn@umich.edu# output created using the software may be prepared, but only for
354123Sbinkertn@umich.edu# Non-Commercial Uses.  Derivatives of the software may be shared with
36# others provided: (i) the others agree to abide by the list of
37# conditions herein which includes the Non-Commercial Use restrictions;
38# and (ii) such Derivatives of the software include the above copyright
39# notice to acknowledge the contribution from this software where
40# applicable, this list of conditions and the disclaimer below.
41#
42# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
43# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
44# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
45# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
46# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
47# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
48# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
49# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
50# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54# Authors: Gabe Black
55
56categories = ["add_and_subtract",
57              "increment_and_decrement",
58              "multiply_and_divide"]
59
60microcode = ""
61for category in categories:
62    exec "import %s as cat" % category
63    microcode += cat.microcode
64
65