mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
36 lines
713 B
C#
36 lines
713 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Cosmos.Hardware.PC.Bus;
|
|
|
|
|
|
namespace Cosmos.Shell.Console.Commands
|
|
{
|
|
public class LspciCommand : CommandBase
|
|
{
|
|
public override string Name
|
|
{
|
|
get { return "lspci"; }
|
|
}
|
|
|
|
public override string Summary
|
|
{
|
|
get { return "Lists pci devices."; }
|
|
}
|
|
|
|
public override void Execute(string param)
|
|
{
|
|
//Cosmos.Hardware.PC.Bus.PCIBus.DebugLSPCI();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Help()
|
|
{
|
|
//System.Console.WriteLine(Name);
|
|
//System.Console.WriteLine(" " + Summary);
|
|
|
|
}
|
|
}
|
|
}
|