私は VHDL の初心者で、Altera Cyclone II でかなり基本的なことを行う方法を理解しようとしています。FPGA には 4 つのプッシュ ボタンがあります。そのうちの 2 つは、選択したレジスタ (0 ~ F) を増減するようにプログラムする必要があります。そのレジスタ。これが私がこれまでに持っているものです:
entity raminfr is
port (
clk : in std_logic;
we : in std_logic;
a : in unsigned(3 downto 0);
di : in unsigned(7 downto 0);
do : out unsigned(7 downto 0)
);
end raminfr;
architecture rtl of raminfr is
type ram_type is array (0 to 15) of unsigned(7 downto 0);
signal RAM : ram_type;
signal read_a : unsigned(3 downto 0);
begin
process (clk)
begin
if rising_edge(clk) then
if we = '1' then
RAM(to_integer(a)) <= di;
end if;
read_a <= a;
end if;
end process;
do <= RAM(to_integer(read_a));
end rtl;
押しボタンのプログラミング方法に関する基本的なサンプル コードを提供してもらえますか?