Tool/software:
Hello
In sdl_ex_ram_ecc_parity_test.c file, in runCorrectableECCTest I need to know why you looped from 0 to 16, However, the variable you try to corrupt is 32 bits.
same for runUncorrectableECCTest.
.


This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software:
Hello
In sdl_ex_ram_ecc_parity_test.c file, in runCorrectableECCTest I need to know why you looped from 0 to 16, However, the variable you try to corrupt is 32 bits.
same for runUncorrectableECCTest.
.


Helo, I face the same question in the past,
If you have a look at RAM_DATA_SINGLE_BIT, you will see that 2 bit are flip, one for the first 16 bits, the second one for the upper 16bits.
Using this, the loop from 0 to 16 cover the 32 bits..
Regards