1 //
2 // Copyright (c) 2010-2021 Antmicro
3 //
4 // This file is licensed under the MIT License.
5 // Full license text is available in 'licenses/MIT.txt'.
6 //
7 
8 using System;
9 using Antmicro.Renode.UserInterface;
10 
11 namespace Antmicro.Renode.Peripherals.DMA
12 {
13     public interface IDMA : IPeripheral
14     {
RequestTransfer(int channel)15         void RequestTransfer(int channel);
16 
17         int NumberOfChannels { get; }
18     }
19 }
20 
21