LogIn E-mail
¼³°èÀ̾߱â
[VHDL]rom64x8
# 78 JMJS    09.3.27 08:24

% cat rom64x8.vhd
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
use std.textio.all;

entity rom64x8 is
        port(
                cs   : in std_logic;
                addr : in std_logic_vector (5 downto 0);
                data : out std_logic_vector (7 downto 0)
                );
end rom64x8;

architecture logic of rom64x8 is
        function i2v (ai : integer) return std_logic_vector is
                variable result: std_logic_vector (7 downto 0);
                variable temp : integer;
        begin
                temp := ai;
                for i in 0 to 7 loop
                        if (temp mod 2) = 1 then
                                result(i) := '1';
                        else
                                result(i) := '0';
                        end if;
                        if result(i) = '1' then
                                temp := (temp - 1) / 2;
                        else
                                temp := temp / 2;
                        end if;
                end loop;
                return result;
        end i2v;        
begin
        process (cs, addr)
                file rom_data_file : TEXT is in "rom64x8.dat";
                type dtype is array (0 to 63) of std_logic_vector(7 downto 0);
                variable myline        : line;
                variable rom_init : boolean := false;
                variable rom_data : dtype;
                variable i, datain : integer :=0;
        begin
                if (rom_init = false) then
                        while not endfile(rom_data_file)
                                and (i < 64) loop
                                readline(rom_data_file, myline);
                                read(myline, datain);
                                rom_data(i) := i2v(datain);        
                                i := i + 1;
                        end loop;
                        rom_init := true;
                end if;
                if cs='1' then
                        data <= rom_data(Conv_Integer(addr));
                else
                        data <= "11111111";
                end if;
        end process;
end logic;

% cat rom64x8_tb.vhd
library IEEE;
use IEEE.std_logic_unsigned.all;
use IEEE.std_logic_1164.all;

entity rom64x8_tb is
end rom64x8_tb;

architecture TB_ARCHITECTURE of rom64x8_tb is
        component rom64x8
                port(
                        cs : in std_logic;
                        addr : in std_logic_vector(5 downto 0);
                        data : out std_logic_vector(7 downto 0)
                );
        end component;

        signal clk,cs : std_logic;
        signal addr : std_logic_vector(5 downto 0);
        signal data : std_logic_vector(7 downto 0);
begin
        UUT: rom64x8 port map (
                cs => cs,
                addr => addr,
                data => data
        );

        clk0: process begin
                clk <= '0'; wait for 5 ns;
                clk <= '1'; wait for 5 ns;
        end process;

        addr0: process begin
                if cs = '0' then
                        addr <= "000000";
                else
                        addr <= addr + "000001";
                end if;
                wait for 10 ns;
        end process;

        datain: process begin
                cs        <= '0';
                wait for 11 ns;

                cs        <= '1';
                wait;
        end process;

end TB_ARCHITECTURE;

% cat rom64x8.dat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64

°Ô½Ã¹°: 93 °Ç, ÇöÀç: 1 / 1 ÂÊ
¹øÈ£ Á¦       ¸ñ ÀÛ¼ºÀÚ µî·ÏÀÏ ¹æ¹®
95  draw_hexa.v JMJS 10.6.17 2120
94  jmjsxram3.v JMJS 10.4.9 1854
93  Verilog document JMJS 11.1.24 2427
92  [verilog]o=(c1)? (c2)? 0:1 : (c3)? 2:3; JMJS 09.3.31 2000
91  [verilog]forever, repeat, strobe, realtime, ... JMJS 09.7.6 3469
90  gtkwave PC version JMJS 09.3.30 1805
89  ncsim option example JMJS 08.12.1 4176
88  [¿µ»ó]keywords for web search JMJS 08.12.1 1812
87  [Verilog]fdisplay fopen fscanf JMJS 11.1.24 6128
86  ncverilog option example JMJS 10.6.8 7540
85  [Verilog]Latch example JMJS 08.12.1 2419
84  Pad verilog example JMJS 01.3.16 4322
83  [ModelSim] vector JMJS 01.3.16 2018
82  RTL Code ºÐ¼®¼ø¼­ JMJS 09.4.29 2315
81  [temp]PIPE JMJS 08.10.2 1679
80  [temp]always-forever ¹«ÇÑ·çÇÁ JMJS 08.10.2 1771
79  YCbCr2RGB.v JMJS 10.5.12 1967
78  [VHDL]rom64x8 JMJS 09.3.27 1573
77  [function]vector_compare JMJS 02.6.19 1541
76  [function]vector2integer JMJS 02.6.19 1611
75  [VHDL]ram8x4x8 JMJS 08.12.1 1493
74  [¿¹]shift JMJS 02.6.19 1841
73  test JMJS 09.7.20 1627
72  test JMJS 09.7.20 1431
71  test JMJS 09.7.20 1364
70  test JMJS 09.7.20 1474
69  test JMJS 09.7.20 1496
68  test JMJS 09.7.20 1418
67  test JMJS 09.7.20 1343
66  test JMJS 09.7.20 1304
65  test JMJS 09.7.20 1411
64  test JMJS 09.7.20 1668
63  test JMJS 09.7.20 1658
62  test JMJS 09.7.20 1589
61  VHDLÀÇ ¿¬»êÀÚ ¿ì¼±¼øÀ§ JMJS 09.7.20 3371
60  test JMJS 09.7.20 1356
59  test JMJS 09.7.20 1435
58  test JMJS 09.7.20 1445
57  test JMJS 09.7.20 1380
56  test JMJS 09.7.20 1431
55  verilog Çаú »ùÇð­ÀÇ JMJS 16.5.30 2050
54  [verilog]create_generated_clock JMJS 15.4.28 2013
53  [Verilog]JDIFF JMJS 14.7.4 1296
52  [verilog]parameter definition JMJS 14.3.5 1563
51  [verilog]sformat fopen fscanf fwrite fclose JMJS 12.1.31 4513
50  Verilog File I/0,Verilog file handling JMJS 12.1.30 2280
49  Verdi JMJS 10.4.22 2876
48  draw hexa JMJS 10.4.9 1634
47  asfifo - Async FIFO JMJS 10.4.8 1468
46  VHDLÀ» ÀÌ¿ëÇÑ È¸·Î¼³°èÀÇ ÀåÁ¡ JMJS 02.3.14 3100
45  synplify batch JMJS 10.3.8 2224
44  ÀüÀڽðè Type A JMJS 08.11.28 1720
43  I2C Webpage JMJS 08.2.25 1586
42  PC¿¡¼­ °£´ÜÈ÷ Verilog ½ÇÇàÇØº¸±â (Icarus Verilog) JMJS 13.1.14 5725
41  [Verilog]vstring JMJS 17.9.27 1820
40  Riviera Simple Case JMJS 09.4.29 2962
39  [VHDL]DES Example JMJS 07.6.15 2705
38  [verilog]RAM example JMJS 09.6.5 2481
37  ROM example [VerilogHDL, RTL] JMJS 04.5.27 1745
36  Jamie's VHDL Handbook JMJS 08.11.28 2401
35  Dualport RAM example [VerilogHDL, RTL] JMJS 04.5.27 3025
34  RTL Job JMJS 09.4.29 1871
33  [VHDL]type example - package TYPES JMJS 06.2.2 1560
32  [verilog]`define `ifdef `elsif `else `endif ... JMJS 10.5.11 9080
30  [verilog]array_module JMJS 05.12.8 1964
29  [verilog-2001]generate JMJS 05.12.8 3130
28  protected JMJS 05.11.18 1769
27  design¿¡ latch°¡ ÀÖÀ¸¸é ¾ÈµÇ³ª¿ä? JMJS 09.7.20 2578
26  busÀÇ µ¥ÀÌŸ¸¦ °¢ bitº°·Î Ãâ·ÂÇÏ´Â ¹æ¹ýÀº? JMJS 04.11.9 1650
25  component¸¦ »ý¼ºÇؼ­ ´Ù¸¥ °÷¿¡¼­ È£ÃâÇÏ´Â ¹æ¹ý JMJS 04.11.4 2196
23  Array Of Array JMJS 04.8.16 1737
22  dumpfile, dumpvars JMJS 04.7.19 3359
21  Vending Machine Jamie 02.12.16 9816
20  Mini Vending Machine1 Jamie 02.12.10 6642
19  Mini Vending Machine Jamie 02.12.6 9463
18  Key Jamie 02.11.29 4705
17  Stop Watch Jamie 02.11.25 5439
16  Mealy Machine Jamie 02.8.29 6437
15  Moore Machine Jamie 02.8.29 16842
14  Up Down Counter Jamie 02.8.29 3755
13  Up Counter Jamie 02.8.29 2503
12  Edge Detecter Jamie 02.8.29 2701
11  Concept4 Jamie 02.8.28 1844
10  Concept3 Jamie 02.8.28 1801
9  Concept2_1 Jamie 02.8.28 1680
8  Concept2 Jamie 02.8.28 1756
7  Concept1 Jamie 02.8.26 1961
6  Tri State Buffer Jamie 02.8.26 3265
5  8x3 Encoder Jamie 02.8.28 3863
4  3x8 Decoder Jamie 02.8.28 3541
3  4bit Comparator Jamie 02.8.26 2933
2  °¡À§ ¹ÙÀ§ º¸ °ÔÀÓ Jamie 02.8.26 5288
1  Two Input Logic Jamie 02.8.26 2204
[1]