vhdl Memories

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Introduction

This covers single port and dual port memories.

Syntax

  • Memory type for constant width and depth.

    type MEMORY_TYPE is array (0 to DEPTH-1) of std_logic_vector(WIDTH-1 downto 0);
    

    Memory type for variable depth and constant width.

    type MEMORY_TYPE is array (natural range <>) of std_logic_vector(WIDTH-1 downto 0);
    


Got any vhdl Question?