I'm trying to work on this Lab tutorial for creating custom IP in Vivado. Can anyone please explain me the meaning of the codes in page 6 step 1-3-9. I don't really get the meaning of those syntax.
Link: http://www.dc.uba.ar/materias/CoDisenio/2015/c2/descargas/lab3.pdf
Here is the code:
lab3_user_logic # (
.LED_WIDTH(LED_WIDTH)
)
U1(
.S_AXI_ACLK(S_AXI_ACLK) ,
.slv_reg_wren(slv_reg_wren) ,
.axi_awaddr(axi_awaddr[C_S_AXI_ADDR_WIDTH-1:ADDR_LSB]) ,
.S_AXI_WDATA(S_AXI_WDATA) ,
.S_AXI_ARESETN(S_AXI_ARESETN),
.LED(LED)
);
Thank you so much.