How can we verify a memory whose address location is swapped

In reply to debashis_paul:

You can fill up entire memory with address as data pattern and read back entire memory with return data as address value

so have test list this

Address value Data value
0x0 → 0x0
0x1 → 0x1
0x20 → 0x20

and so on.

your read data will mismatch and catch this issue.

1 Like