summaryrefslogtreecommitdiff
path: root/objects/AlphaConsole.mpy
blob: 79918a01e273c36cbcbf2e46d2937cc55c3d459a (plain)
1
2
3
4
5
6
7
8
9
from Device import PioDevice

simobj AlphaConsole(PioDevice):
    type = 'AlphaConsole'
    cpu = Param.BaseCPU(Super, "Processor")
    disk = Param.SimpleDisk("Simple Disk")
    num_cpus = Param.Int(1, "Number of CPUs")
    sim_console = Param.SimConsole(Super, "The Simulator Console")
    system = Param.BaseSystem(Super, "system object")