SConscript (8105:906864dd0937) | SConscript (8335:9228e00459d4) |
---|---|
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 --- 112 unchanged lines hidden (view full) --- 121isa_desc_action = MakeAction(isa_desc_action_func, Transform("ISA DESC", 1)) 122 123# Also include the CheckerCPU as one of the models if it is being 124# enabled via command line. 125isa_desc_builder = Builder(action=isa_desc_action, emitter=isa_desc_emitter) 126 127env.Append(BUILDERS = { 'ISADesc' : isa_desc_builder }) 128 | 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 --- 112 unchanged lines hidden (view full) --- 121isa_desc_action = MakeAction(isa_desc_action_func, Transform("ISA DESC", 1)) 122 123# Also include the CheckerCPU as one of the models if it is being 124# enabled via command line. 125isa_desc_builder = Builder(action=isa_desc_action, emitter=isa_desc_emitter) 126 127env.Append(BUILDERS = { 'ISADesc' : isa_desc_builder }) 128 |
129TraceFlag('IntRegs') 130TraceFlag('FloatRegs') 131TraceFlag('MiscRegs') | 129DebugFlag('IntRegs') 130DebugFlag('FloatRegs') 131DebugFlag('MiscRegs') |
132CompoundFlag('Registers', [ 'IntRegs', 'FloatRegs', 'MiscRegs' ]) | 132CompoundFlag('Registers', [ 'IntRegs', 'FloatRegs', 'MiscRegs' ]) |