该特定语法称为索引部分选择。当您需要从多位寄存器中的可变偏移量中选择固定数量的位时,它非常有用。
下面是一个语法示例:
reg [31:0] dword;
reg [7:0] byte0;
reg [7:0] byte1;
reg [7:0] byte2;
reg [7:0] byte3;
assign byte0 = dword[0 +: 8]; // Same as dword[7:0]
assign byte1 = dword[8 +: 8]; // Same as dword[15:8]
assign byte2 = dword[16 +: 8]; // Same as dword[23:16]
assign byte3 = dword[24 +: 8]; // Same as dword[31:24]
这种语法的最大优点是您可以使用变量作为索引。Verilog 中的正常部分选择需要常量。dword[i+7:i]
因此,不允许使用类似的东西尝试上述操作。
因此,如果您想使用变量选择来选择特定字节,您可以使用索引部分选择。
使用变量的示例:
reg [31:0] dword;
reg [7:0] byte;
reg [1:0] i;
// This is illegal due to the variable i, even though the width is always 8 bits
assign byte = dword[(i*8)+7 : i*8]; // ** Not allowed!
// Use the indexed part select
assign byte = dword[i*8 +: 8];