OpenCores
URL https://opencores.org/ocsvn/8051/8051/trunk

Subversion Repositories 8051

[/] [8051/] [trunk/] [rtl/] [verilog/] [oc8051_ram_top.v] - Blame information for rev 172

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 82 simont
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  8051 data ram                                               ////
4
////                                                              ////
5
////  This file is part of the 8051 cores project                 ////
6
////  http://www.opencores.org/cores/8051/                        ////
7
////                                                              ////
8
////  Description                                                 ////
9
////   data ram                                                   ////
10
////                                                              ////
11
////  To Do:                                                      ////
12
////   nothing                                                    ////
13
////                                                              ////
14
////  Author(s):                                                  ////
15
////      - Simon Teran, simont@opencores.org                     ////
16
////                                                              ////
17
//////////////////////////////////////////////////////////////////////
18
////                                                              ////
19
//// Copyright (C) 2000 Authors and OPENCORES.ORG                 ////
20
////                                                              ////
21
//// This source file may be used and distributed without         ////
22
//// restriction provided that this copyright statement is not    ////
23
//// removed from the file and that any derivative work contains  ////
24
//// the original copyright notice and the associated disclaimer. ////
25
////                                                              ////
26
//// This source file is free software; you can redistribute it   ////
27
//// and/or modify it under the terms of the GNU Lesser General   ////
28
//// Public License as published by the Free Software Foundation; ////
29
//// either version 2.1 of the License, or (at your option) any   ////
30
//// later version.                                               ////
31
////                                                              ////
32
//// This source is distributed in the hope that it will be       ////
33
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
34
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
35
//// PURPOSE.  See the GNU Lesser General Public License for more ////
36
//// details.                                                     ////
37
////                                                              ////
38
//// You should have received a copy of the GNU Lesser General    ////
39
//// Public License along with this source; if not, download it   ////
40
//// from http://www.opencores.org/lgpl.shtml                     ////
41
////                                                              ////
42
//////////////////////////////////////////////////////////////////////
43
//
44
// CVS Revision History
45
//
46
// $Log: not supported by cvs2svn $
47 172 simont
// Revision 1.8  2003/04/02 16:12:04  simont
48
// generic_dpram used
49
//
50 105 simont
// Revision 1.7  2003/04/02 11:26:21  simont
51
// updating...
52
//
53 95 simont
// Revision 1.6  2003/01/26 14:19:22  rherveille
54
// Replaced oc8051_ram by generic_dpram.
55
//
56 89 rherveille
// Revision 1.5  2003/01/13 14:14:41  simont
57
// replace some modules
58
//
59 82 simont
// Revision 1.4  2002/09/30 17:33:59  simont
60
// prepared header
61
//
62
//
63
 
64
// synopsys translate_off
65
`include "oc8051_timescale.v"
66
// synopsys translate_on
67
 
68
`include "oc8051_defines.v"
69
 
70
 
71 172 simont
module oc8051_ram_top (clk,
72
                       rst,
73
                       rd_addr,
74
                       rd_data,
75
                       wr_addr,
76
                       bit_addr,
77
                       wr_data,
78
                       wr,
79
                       bit_data_in,
80
                       bit_data_out
81
`ifdef OC8051_BIST
82
         ,
83
         scanb_rst,
84
         scanb_clk,
85
         scanb_si,
86
         scanb_so,
87
         scanb_en
88
`endif
89
                       );
90 89 rherveille
 
91
// on-chip ram-size (2**ram_aw bytes)
92
parameter ram_aw = 8; // default 256 bytes
93
 
94
 
95 82 simont
//
96
// clk          (in)  clock
97
// rd_addr      (in)  read addres [oc8051_ram_rd_sel.out]
98
// rd_data      (out) read data [oc8051_ram_sel.in_ram]
99
// wr_addr      (in)  write addres [oc8051_ram_wr_sel.out]
100
// bit_addr     (in)  bit addresable instruction [oc8051_decoder.bit_addr -r]
101
// wr_data      (in)  write data [oc8051_alu.des1]
102
// wr           (in)  write [oc8051_decoder.wr -r]
103
// bit_data_in  (in)  bit data input [oc8051_alu.desCy]
104
// bit_data_out (out)  bit data output [oc8051_ram_sel.bit_in]
105
//
106
 
107
input clk, wr, bit_addr, bit_data_in, rst;
108
input [7:0] wr_data;
109
input [7:0] rd_addr, wr_addr;
110
output bit_data_out;
111
output [7:0] rd_data;
112
 
113 172 simont
`ifdef OC8051_BIST
114
input   scanb_rst;
115
input   scanb_clk;
116
input   scanb_si;
117
output  scanb_so;
118
input   scanb_en;
119
`endif
120 82 simont
 
121
// rd_addr_m    read address modified
122
// wr_addr_m    write address modified
123
// wr_data_m    write data modified
124
reg [7:0] wr_data_m;
125
reg [7:0] rd_addr_m, wr_addr_m;
126
 
127
// bit_addr_r   bit addresable instruction (registerd)
128
reg bit_addr_r;
129
reg [2:0] bit_select;
130
 
131
assign bit_data_out = rd_data[bit_select];
132
 
133
 
134 89 rherveille
generic_dpram #(ram_aw, 8) oc8051_ram1(
135
        .rclk  ( clk       ),
136
        .rrst  ( rst       ),
137
        .rce   ( 1'b1      ),
138
        .oe    ( 1'b1      ),
139
        .raddr ( rd_addr_m ),
140
        .do    ( rd_data   ),
141 82 simont
 
142 89 rherveille
        .wclk  ( clk       ),
143
        .wrst  ( rst       ),
144
        .wce   ( 1'b1      ),
145
        .we    ( wr        ),
146
        .waddr ( wr_addr_m ),
147
        .di    ( wr_data_m )
148
);
149
 
150 105 simont
 
151 82 simont
always @(posedge clk or posedge rst)
152
  if (rst) begin
153
    bit_addr_r <= #1 1'b0;
154
    bit_select <= #1 3'b0;
155
  end else begin
156
    bit_addr_r <= #1 bit_addr;
157
    bit_select <= #1 rd_addr[2:0];
158
  end
159
 
160 89 rherveille
 
161 82 simont
always @(rd_addr or bit_addr)
162 89 rherveille
  casex ( {bit_addr, rd_addr[7]} ) // synopsys full_case parallel_case
163
      2'b0?: rd_addr_m = rd_addr;
164
      2'b10: rd_addr_m = {4'b0010, rd_addr[6:3]};
165
      2'b11: rd_addr_m = {1'b1, rd_addr[6:3], 3'b000};
166 82 simont
  endcase
167
 
168 89 rherveille
 
169 82 simont
always @(wr_addr or bit_addr_r)
170 89 rherveille
  casex ( {bit_addr_r, wr_addr[7]} ) // synopsys full_case parallel_case
171
      2'b0?: wr_addr_m = wr_addr;
172
      2'b10: wr_addr_m = {8'h00, 4'b0010, wr_addr[6:3]};
173
      2'b11: wr_addr_m = {8'h00, 1'b1, wr_addr[6:3], 3'b000};
174 82 simont
  endcase
175
 
176 89 rherveille
 
177 82 simont
always @(rd_data or bit_select or bit_data_in or wr_data or bit_addr_r)
178 89 rherveille
  casex ( {bit_addr_r, bit_select} ) // synopsys full_case parallel_case
179
      4'b0_???: wr_data_m = wr_data;
180
      4'b1_000: wr_data_m = {rd_data[7:1], bit_data_in};
181
      4'b1_001: wr_data_m = {rd_data[7:2], bit_data_in, rd_data[0]};
182
      4'b1_010: wr_data_m = {rd_data[7:3], bit_data_in, rd_data[1:0]};
183
      4'b1_011: wr_data_m = {rd_data[7:4], bit_data_in, rd_data[2:0]};
184
      4'b1_100: wr_data_m = {rd_data[7:5], bit_data_in, rd_data[3:0]};
185
      4'b1_101: wr_data_m = {rd_data[7:6], bit_data_in, rd_data[4:0]};
186
      4'b1_110: wr_data_m = {rd_data[7], bit_data_in, rd_data[5:0]};
187
      4'b1_111: wr_data_m = {bit_data_in, rd_data[6:0]};
188
  endcase
189 82 simont
 
190
 
191
endmodule

powered by: WebSVN 2.1.0

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