Nathan Binkert | 3ece6ab | 2005-01-15 04:12:25 -0500 | [diff] [blame] | 1 | from Device import PioDevice |
| 2 | |
| 3 | simobj AlphaConsole(PioDevice): |
Nathan Binkert | a736a8f | 2005-02-02 21:13:01 -0500 | [diff] [blame] | 4 | type = 'AlphaConsole' |
Steve Reinhardt | c8538d6 | 2005-03-16 00:40:48 -0500 | [diff] [blame] | 5 | cpu = Param.BaseCPU(parent.any, "Processor") |
Nathan Binkert | 3ece6ab | 2005-01-15 04:12:25 -0500 | [diff] [blame] | 6 | disk = Param.SimpleDisk("Simple Disk") |
Nathan Binkert | a736a8f | 2005-02-02 21:13:01 -0500 | [diff] [blame] | 7 | num_cpus = Param.Int(1, "Number of CPUs") |
Steve Reinhardt | c8538d6 | 2005-03-16 00:40:48 -0500 | [diff] [blame] | 8 | sim_console = Param.SimConsole(parent.any, "The Simulator Console") |
| 9 | system = Param.BaseSystem(parent.any, "system object") |