aignacio / ravenoc

RaveNoC is a configurable HDL NoC (Network-On-Chip) suitable for MPSoCs and different MP applications
MIT License
148 stars 32 forks source link

What is the meaning of “ def_wr_dec, def_rd_dec ” in ”axi slave if“ file #5

Closed Elena32061 closed 2 years ago

Elena32061 commented 2 years ago

I also see many signal names with the suffix ff, such as head_flit_ff, I want to ask the meaning of "ff"head_flit_ff

aignacio commented 2 years ago

Hi Elena, starting from the comment question, the ff suffix stands for flip-flop, whatever is not _ff is either a wire or a piece of combinatorial logic.

def_wr_dec = Default Write Decoding 
def_rd_dec = Default Read Decoding
Elena32061 commented 2 years ago

Thanks!😊