3.6.1.19 Module Control Interface
(Ask a Question)- Syntax
#pragma HLS interface control type(<simple|axi_target>)
- Description
- This pragma configures the Module Control Interface. This pragma is ignored if the enclosing function is not specified as the top-level.
- Parameters
-
Table 3-17. Parameter Value Optional Default Description type
simple|axi_target No simple
Interface type - Position
- At the beginning of the function definition block.
- Examples
-
int fun() { #pragma HLS function top #pragma HLS interface control type(simple) ... }