AlphaBackdoor.py (8789:a8b63a0ee14c) AlphaBackdoor.py (9338:97b4a2be1e5b)
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

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

28
29from m5.defines import buildEnv
30from m5.params import *
31from m5.proxy import *
32from Device import BasicPioDevice
33
34class AlphaBackdoor(BasicPioDevice):
35 type = 'AlphaBackdoor'
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

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

28
29from m5.defines import buildEnv
30from m5.params import *
31from m5.proxy import *
32from Device import BasicPioDevice
33
34class AlphaBackdoor(BasicPioDevice):
35 type = 'AlphaBackdoor'
36 cxx_header = "dev/alpha/backdoor.hh"
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 system = Param.AlphaSystem(Parent.any, "system object")
37 cpu = Param.BaseCPU(Parent.cpu[0], "Processor")
38 disk = Param.SimpleDisk("Simple Disk")
39 terminal = Param.Terminal(Parent.any, "The console terminal")
40 platform = Param.Platform(Parent.any, "Platform this device is part of.")
41 system = Param.AlphaSystem(Parent.any, "system object")