목차
Project) 4 비트의 16개의 메모리를 가진 메모리 뱅크
본문내용
VHDL을 이용해서 memory를 설계하고,
컴파일 후, 시뮬레이션한 결과
(source code)
-- This source is VHDL source of memory.
-- 16's storage memory with 4-bit address.
-- This source is manufactured by Kim Hyounjung from Konkuk university
-- This source is free.
-- Reference: Digital circuit design using VHDL (한올 출판사)
-- library appending
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
entity memory is -- entity declarataion
generic( n: integer := 8; -- n is word.
p: integer := 16); -- p is memory's storage.
참고 자료
없음