AlphaBackdoor.py (8742:9df38d259935) AlphaBackdoor.py (8789:a8b63a0ee14c)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

32from Device import BasicPioDevice
33
34class AlphaBackdoor(BasicPioDevice):
35 type = 'AlphaBackdoor'
36 cpu = Param.BaseCPU(Parent.cpu[0], "Processor")
37 disk = Param.SimpleDisk("Simple Disk")
38 terminal = Param.Terminal(Parent.any, "The console terminal")
39 platform = Param.Platform(Parent.any, "Platform this device is part of.")
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

32from Device import BasicPioDevice
33
34class AlphaBackdoor(BasicPioDevice):
35 type = 'AlphaBackdoor'
36 cpu = Param.BaseCPU(Parent.cpu[0], "Processor")
37 disk = Param.SimpleDisk("Simple Disk")
38 terminal = Param.Terminal(Parent.any, "The console terminal")
39 platform = Param.Platform(Parent.any, "Platform this device is part of.")
40 if buildEnv['FULL_SYSTEM']: # No AlphaSystem in SE mode.
41 system = Param.AlphaSystem(Parent.any, "system object")
40 system = Param.AlphaSystem(Parent.any, "system object")