232k views
1 vote
True/False: Both read and write operations must been synchronized when dealing with external SRAM.

1 Answer

1 vote

Final answer:

Both read and write operations must be synchronized when dealing with external SRAM to avoid conflicts and ensure data integrity.

Step-by-step explanation:

In the case of external SRAM, both read and write operations must be synchronized to ensure data integrity. This is because external SRAM is typically accessed by multiple devices simultaneously, and without synchronization, conflicts can occur.

For example, if one device tries to read data from the SRAM at the same time another device is writing to it, there is a risk of getting incorrect or inconsistent data.

To avoid this, synchronization mechanisms like locks or semaphores are used to coordinate access to the SRAM, ensuring that only one device can read or write at a time.

User Saad Mehmood
by
8.8k points