1 //
2 // Copyright (c) 2021 Antmicro
3 //
4 // This file is licensed under the MIT License.
5 // Full license text is available in 'licenses/MIT.txt'.
6 //
7 using Antmicro.Renode.UserInterface;
8 using Antmicro.Renode.Peripherals.CPU;
9 
10 namespace Antmicro.Renode.Peripherals.CFU
11 {
12     public interface ICFU : IPeripheral
13     {
14         ICPU ConnectedCpu { get; set; }
15         string SimulationFilePath { get; set; }
16     }
17 }
18