Version 5.8

This commit is contained in:
ufrisk
2023-08-20 21:33:18 +02:00
parent 48978d25f9
commit 2361020029
114 changed files with 4475 additions and 534 deletions

View File

@@ -0,0 +1,19 @@
package leechcore;
import leechcore.entry.LeechCoreBarRequest;
/**
* LeechCore PCIe BAR Callback Interface<br>
* Check out the example code to get started! https://github.com/ufrisk/LeechCore/<br>
* @see https://github.com/ufrisk/LeechCore
* @author Ulf Frisk - pcileech@frizk.net
*/
public interface ILeechCoreBarCallback
{
/**
* Callback function will be called when a PCIe BAR request arrives at the FPGA.
* If it's a read then it should be replied to by calling req.readReply();
* @param req
*/
public void LeechCoreBarCallback(LeechCoreBarRequest req);
}