blob: 5c3394d7868a122f2c4c05d155c7ac921b43d259 [file]
//
// Copyright (c) 2010-2024 Antmicro
//
// This file is licensed under the MIT License.
// Full license text is available in 'licenses/MIT.txt'.
//
using System;
using Antmicro.Renode.UserInterface;
namespace Antmicro.Renode.Plugins.CoSimulationPlugin
{
[Plugin(Name = "Cosimulation Plugin", Version = "1.0", Description = "Provides Verilog simulation integration.", Vendor = "Antmicro")]
public sealed class CoSimulationPlugin : IDisposable
{
public CoSimulationPlugin(Monitor monitor)
{
}
public void Dispose()
{
}
}
}