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

Subversion Repositories i650

[/] [i650/] [trunk/] [rtl/] [toplev.v] - Blame information for rev 16

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

Line No. Rev Author Line
1 12 eightycc
`timescale 1ns / 1ps
2
//////////////////////////////////////////////////////////////////////////////////
3
// IBM 650 Reconstruction in Verilog (i650)
4
// 
5
// This file is part of the IBM 650 Reconstruction in Verilog (i650) project
6
// http:////www.opencores.org/project,i650
7
//
8
// Description: Top level.
9
// 
10
// Additional Comments: See US 2959351, Fig. 53, 54 and 55. Additional index
11
//  counters provided to address general storage and register RAMs.
12
//
13
// Copyright (c) 2015 Robert Abeles
14
//
15
// This source file is free software; you can redistribute it
16
// and/or modify it under the terms of the GNU Lesser General
17
// Public License as published by the Free Software Foundation;
18
// either version 2.1 of the License, or (at your option) any
19
// later version.
20
//
21
// This source is distributed in the hope that it will be
22
// useful, but WITHOUT ANY WARRANTY; without even the implied
23
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
24
// PURPOSE.  See the GNU Lesser General Public License for more
25
// details.
26
//
27
// You should have received a copy of the GNU Lesser General
28
// Public License along with this source; if not, download it
29
// from http://www.opencores.org/lgpl.shtml
30
//////////////////////////////////////////////////////////////////////////////////
31
`include "defines.v"
32
 
33
module toplev (
34
      input clk,
35
      input rst,
36
 
37 13 eightycc
      input [0:6] cmd_digit_in, io_buffer_in,
38
      input [0:5] command,
39 12 eightycc
 
40 15 eightycc
      output [0:6] cmd_digit_out, display_digit,
41 13 eightycc
      output busy, digit_ready, punch_card, read_card, card_digit_ready,
42 15 eightycc
      output digit_sync, word_upper,
43
      output [0:3] digit_ctr
44 12 eightycc
  );
45
 
46 13 eightycc
   wire ap, bp, cp, dp;
47
   wire dx, d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, d10,
48
        d1_d5, d5_dx, d5_d10, d1_dx, d5_d9, d10_d1_d5,
49
        dxl, dxu, d0l, d0u, d1l, d1u, d2l, d10u;
50
   wire w0, w1, w2, w3, w4, w5, w6, w7, w8, w9,
51
        wl, wu, ewl;
52
   wire s0, s1, s2, s3, s4, hp;
53
   wire [0:9] digit_idx;
54
   wire [0:3] early_idx, ontime_idx;
55
 
56 15 eightycc
   assign digit_sync = bp;
57
   assign digit_ctr = ontime_idx;
58
   assign word_upper = wu;
59 13 eightycc
 
60
   timing tm (
61 12 eightycc
    .clk(clk),
62
    .rst(rst),
63
    .ap(ap),
64
    .bp(bp),
65
    .cp(cp),
66
    .dp(dp),
67
    .dx(dx),
68
    .d0(d0),
69
    .d1(d1),
70
    .d2(d2),
71
    .d3(d3),
72
    .d4(d4),
73
    .d5(d5),
74
    .d6(d6),
75
    .d7(d7),
76
    .d8(d8),
77
    .d9(d9),
78
    .d10(d10),
79
    .d1_d5(d1_d5),
80
    .d5_dx(d5_dx),
81
    .d5_d10(d5_d10),
82
    .d1_dx(d1_dx),
83
    .d5_d9(d5_d9),
84
    .d10_d1_d5(d10_d1_d5),
85
    .dxl(dxl),
86
    .dxu(dxu),
87
    .d0l(d0l),
88
    .d0u(d0u),
89
    .d1l(d1l),
90
    .d1u(d1u),
91
    .d2l(d2l),
92
    .d10u(d10u),
93
    .w0(w0),
94
    .w1(w1),
95
    .w2(w2),
96
    .w3(w3),
97
    .w4(w4),
98
    .w5(w5),
99
    .w6(w6),
100
    .w7(w7),
101
    .w8(w8),
102
    .w9(w9),
103
    .wl(wl),
104
    .wu(wu),
105
    .ewl(ewl),
106
    .s0(s0),
107
    .s1(s1),
108
    .s2(s2),
109
    .s3(s3),
110
    .s4(s4),
111
    .hp(hp),
112
    .digit_idx(digit_idx),
113
    .early_idx(early_idx),
114
    .ontime_idx(ontime_idx)
115
   );
116 13 eightycc
 
117 12 eightycc
   //-----------------------------------------------------------------------------
118 15 eightycc
   // Accumulator
119
   //-----------------------------------------------------------------------------
120
   wire [0:6] ac_early_out, ac_ontime_out, ac_ped_out;
121
 
122
   //-----------------------------------------------------------------------------
123 12 eightycc
   // General storage
124
   //-----------------------------------------------------------------------------
125 13 eightycc
   wire [0:4] gs_out;
126
   wire gs_double_write, gs_no_write;
127
 
128 12 eightycc
   //-----------------------------------------------------------------------------
129
   // Operator controls
130
   //-----------------------------------------------------------------------------
131 15 eightycc
   wire [0:6] oc_data_out, oc_addr_out, oc_console_out, oc_display_digit;
132 13 eightycc
   wire oc_console_to_addr;
133
   wire [0:14] oc_gs_ram_addr;
134
   wire oc_read_gs, oc_write_gs;
135
   wire oc_pgm_start, oc_pgm_stop, oc_err_reset, oc_err_sense_reset;
136
   wire oc_run_control, oc_half_or_pgm_stop, oc_ri_storage, oc_ro_storage,
137
        oc_storage_control;
138
   wire oc_man_pgm_reset, oc_man_acc_reset, oc_set_8000, oc_reset_8000,
139 12 eightycc
        oc_hard_reset;
140 15 eightycc
   assign display_digit = oc_display_digit;
141
 
142 12 eightycc
   //-----------------------------------------------------------------------------
143
   // Translators
144
   //-----------------------------------------------------------------------------
145 13 eightycc
   wire tr_gs_write;
146
   wire [0:4] tr_gs_in;
147
   wire [0:6] tr_select_out;
148 12 eightycc
 
149 15 eightycc
   accumulator ac (
150
    .rst(rst),
151
    .ap(ap),
152
    .bp(bp),
153
    .dp(dp),
154
    .d1(d1),
155
    .d2(d2),
156
    .d10(d10),
157
    .dxu(dxu),
158
    .d0u(d0u),
159
    .wu(wu),
160
    .wl(wl),
161
    .adder_out(`biq_0),
162
    .acc_regen_gate(1'b1),
163
    .right_shift_gate(1'b0),
164
    .acc_ri_gate(1'b0),
165
    .zero_shift_count(1'b0),
166
    .man_acc_reset(oc_man_acc_reset),
167
    .reset_op_latch(1'b0),
168
    .early_idx(early_idx),
169
    .ontime_idx(ontime_idx),
170
    .early_out(ac_early_out),
171
    .ontime_out(ac_ontime_out),
172
    .ped_out(ac_ped_out)
173
    );
174
 
175 13 eightycc
   gen_store gs (
176 12 eightycc
    .rst(oc_hard_reset),
177
    .ap(ap),
178
    .dp(dp),
179
    .write_gate(tr_gs_write),
180
    .addr_th(`biq_blank),
181
    .addr_h(`biq_blank),
182
    .addr_t(`biq_blank),
183
    .dynamic_addr(digit_idx),
184
    .gs_in(tr_gs_in),
185
    .console_ram_addr(oc_gs_ram_addr),
186
    .console_read_gs(oc_read_gs),
187 13 eightycc
    .console_write_gs(oc_write_gs),
188 12 eightycc
    .gs_out(gs_out),
189
    .double_write(gs_double_write),
190
    .no_write(gs_no_write)
191
    );
192
 
193 13 eightycc
   operator_ctl oc (
194 12 eightycc
    .rst(rst),
195
    .clk(clk),
196
    .ap(ap),
197
    .dp(dp),
198
    .dx(dx),
199
    .d0(d0),
200
    .d1(d1),
201
    .d2(d2),
202
    .d3(d3),
203
    .d4(d4),
204
    .d5(d5),
205 16 eightycc
    .d6(d6),
206
    .d9(d9),
207 12 eightycc
    .d10(d10),
208 16 eightycc
    .wu(wu),
209
    .wl(wl),
210 12 eightycc
    .hp(hp),
211
    .early_idx(early_idx),
212
    .ontime_idx(ontime_idx),
213
    .cmd_digit_in(cmd_digit_in),
214
    .io_buffer_in(io_buffer_in),
215
    .gs_in(tr_select_out),
216 15 eightycc
    .acc_ontime(ac_ontime_out),
217
    .dist_ontime(`biq_blank),
218
    .prog_ontime(`biq_blank),
219 12 eightycc
    .command(command),
220
    .data_out(oc_data_out),
221
    .addr_out(oc_addr_out),
222
    .console_out(oc_console_out),
223 15 eightycc
    .display_digit(oc_display_digit),
224 12 eightycc
    .console_to_addr(oc_console_to_addr),
225
    .gs_ram_addr(oc_gs_ram_addr),
226 13 eightycc
    .read_gs(oc_read_gs),
227
    .write_gs(oc_write_gs),
228 12 eightycc
    .pgm_start(oc_pgm_start),
229
    .pgm_stop(oc_pgm_stop),
230
    .err_reset(oc_err_reset),
231
    .err_sense_reset(oc_err_sense_reset),
232
    .run_control(oc_run_control),
233
    .half_or_pgm_stop(oc_half_or_pgm_stop),
234
    .ri_storage(oc_ri_storage),
235
    .ro_storage(oc_ro_storage),
236
    .storage_control(oc_storage_control),
237
    .man_pgm_reset(oc_man_pgm_reset),
238
    .man_acc_reset(oc_man_acc_reset),
239
    .set_8000(oc_set_8000),
240
    .reset_8000(oc_reset_8000),
241
    .hard_reset(oc_hard_reset),
242
    .cmd_digit_out(cmd_digit_out),
243
    .busy(busy),
244
    .digit_ready(digit_ready),
245
    .punch_card(punch_card),
246
    .read_card(read_card),
247
    .card_digit_ready(card_digit_ready)
248
    );
249
 
250 13 eightycc
    translators tr (
251 12 eightycc
    .dist_early_out(`biq_blank),
252
    .bs_out(`biq_blank),
253
    .console_out(oc_console_out),
254
    .ri_gs(1'b0),
255
    .ri_bs(1'b0),
256
    .ri_console(oc_write_gs),
257
    .n800x(1'b1),
258
    .gs_out(gs_out),
259
    .gs_write(tr_gs_write),
260
    .gs_in(tr_gs_in),
261
    .select_out(tr_select_out)
262
    );
263
 
264
endmodule

powered by: WebSVN 2.1.0

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