OpenCores
URL https://opencores.org/ocsvn/2d_game_console/2d_game_console/trunk

Subversion Repositories 2d_game_console

[/] [2d_game_console/] [trunk/] [Processor_Quartus/] [SRAM_Interface.v] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 lucas.vbal
 
2
module SRAM_Interface (
3
        iDATA,
4
        iADDR,
5
 
6
        oWE_N,
7
        oOE_N,
8
        oCE_N,
9
        oLB_N,
10
        oUB_N,
11
        oADDR,
12
        oRED,
13
        oGREEN,
14
        oBLUE
15
);
16
 
17
input   wire    [19:0]   iADDR;
18
input           wire    [15:0]   iDATA;
19
 
20
output          [7:0]            oRED;
21
output          [7:0]            oGREEN;
22
output          [7:0]            oBLUE;
23
output          [19:0]   oADDR;
24
output          oWE_N;
25
output          oOE_N;
26
output          oCE_N;
27
output          oLB_N;
28
output          oUB_N;
29
 
30
assign  oWE_N = 1'b1;
31
assign  oOE_N = 1'b0;
32
assign  oCE_N = 1'b0;
33
assign  oLB_N = 1'b0;
34
assign  oUB_N = 1'b0;
35
assign  oADDR = iADDR;
36
 
37
assign  oRED            [2:0]    =       3'b000;
38
assign  oRED            [7:3]   =       iDATA   [4:0];
39
 
40
assign  oGREEN  [1:0]    =       2'b00;
41
assign  oGREEN  [7:2]   =       iDATA   [10:5];
42
 
43
assign  oBLUE           [2:0]    =       3'b000;
44
assign  oBLUE           [7:3]   =       iDATA   [15:11];
45
 
46
 
47
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.