3.6.1.18 Module Control Interface

Syntax
#pragma HLS interface control type(<simple|axi_target>)
Description
This pragma configures the 3.5.1.18.1 Module Control Interface. This pragma is ignored if the enclosing function is not specified as the top-level.
Parameters
Table 3-5. 
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)    ...
}