diff --git a/test/feature/byte_enable_feature_tb.vhd b/test/feature/byte_enable_feature_tb.vhd index 56198a43f24c0c4b07f30534f99f6577044dcebb..edf238eaa459285a62429607fc1bc1f567d6961d 100644 --- a/test/feature/byte_enable_feature_tb.vhd +++ b/test/feature/byte_enable_feature_tb.vhd @@ -103,7 +103,7 @@ package body byte_enable_feature is for i in 0 to 1 loop data := (OTHERS => '0'); address := std_logic_vector(to_unsigned( - (to_integer(unsigned(YOLO_REG_ADDR)) + i * 2), 12)); + (to_integer(unsigned(YOLO_REG_ADR)) + i * 2), 12)); CAN_read(data, address, ID, mem_bus(1), BIT_16); -- Checking if valid 2 bytes match register value @@ -129,7 +129,7 @@ package body byte_enable_feature is for i in 0 to 3 loop data := (OTHERS => '0'); address := std_logic_vector(to_unsigned( - (to_integer(unsigned(YOLO_REG_ADDR)) + i), 12)); + (to_integer(unsigned(YOLO_REG_ADR)) + i), 12)); CAN_read(data, address, ID, mem_bus(1), BIT_8); -- Checking if valid 1 byte matches register value