forked from sorgelig/ZX_Spectrum-128K_MIST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tape.sv
452 lines (398 loc) · 10.2 KB
/
tape.sv
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
//
// tape.v
//
// tape implementation for the spectrum core for the MiST board
// http://code.google.com/p/mist-board/
//
// Copyright (c) 2014 Till Harbaum <[email protected]>
//
// This source file is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This source file is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// This reads a CSW1 file as described here:
// http://ramsoft.bbk.org.omegahg.com/csw.html#CSW1FORMAT
//
////////////////////////////////////////////////////////////////////
//
// TAP format addition and turbo loading. Copyright (c) 2016 Sorgelig.
//
module tape
(
input clk_sys,
input ce,
input turbo,
input byte_wait,
output reg byte_ready,
output [7:0] dout,
input pause,
input prev,
input next,
output reg active,
output reg available,
input tape_ready,
input tape_mode,
input [24:0] tape_size,
input stdload,
input req_hdr,
output reg audio_out,
input rd_en,
output rd,
output [24:0] addr,
input [7:0] din
);
localparam CLOCK = 32'd3500000;
assign rd = rd_req & rd_en;
assign dout = data;
reg [24:0] read_cnt;
reg read_done;
reg [7:0] data;
reg rd_req;
reg [24:0] size;
always @(posedge clk_sys) begin
reg old_pause, old_prev, old_next, old_ready, old_rden;
reg [24:0] blk_list[32];
reg play_pause;
reg [15:0] blocksz;
reg [5:0] hdrsz;
reg [15:0] pilot;
reg [12:0] tick;
reg [7:0] state;
reg [31:0] bitcnt;
reg [31:0] timeout;
reg [15:0] freq;
reg [2:0] reload32;
reg [31:0] clk_play_cnt;
reg blk_type;
reg [7:0] din_r;
reg skip;
reg turboskip;
reg auto_blk;
reg [4:0] blk_num;
reg old_stdload;
old_rden <= rd_en;
if(~rd_en) begin
if(rd_req) begin
if(old_rden) begin
if(~read_done) begin
din_r <= din;
read_done <= 1;
end
rd_req <= 0;
end
end else begin
rd_req <= ~read_done;
end
end
active <= !play_pause && read_cnt;
available <= (read_cnt != 0);
old_ready <= tape_ready;
if(tape_ready & ~old_ready) begin
read_cnt <= tape_size;
addr <= 0;
size <= tape_size;
blk_list[0] <= tape_size;
if(!tape_mode && tape_size) begin
hdrsz <= 32;
read_done <= 0;
end
end
if(~tape_ready) begin
old_stdload<= 0;
read_cnt <= 0;
read_done <= 1;
play_pause <= 1;
hdrsz <= 0;
state <= 0;
reload32 <= 0;
bitcnt <= 1;
blk_type <= 0;
skip <= 0;
turboskip <= 0;
auto_blk <= 0;
blk_list <= '{default:0};
blk_num <= 0;
rd_req <= 0;
audio_out<= 1;
end else if(ce) begin
old_stdload <= stdload;
if((stdload | turbo) & ~auto_blk) play_pause <= 0;
old_pause <= pause;
if(pause & ~old_pause & ~turbo) begin
play_pause <= ~play_pause;
auto_blk <= ~play_pause;
end
if(tape_mode) begin
// TAP file
if(hdrsz && read_done) begin
read_done <= 0;
if(hdrsz == 2) blocksz[7:0] <= din_r;
else blocksz[15:8] <= din_r;
hdrsz <= hdrsz - 1'b1;
read_cnt <= read_cnt - 1'b1;
addr <= addr + 1'b1;
end
if(!play_pause & (read_cnt || state)) begin
if(tick) begin
tick <= tick - 1'b1;
if(tick == 1) audio_out <= ~audio_out;
end else begin
case(state)
0: begin //new block
hdrsz <= 2;
read_done <= 0;
pilot <= turbo ? 16'd20 : 16'd3220;
timeout <= 3500000;
state <= state + 1'b1;
end
1: begin //tone
if(skip) begin
if(!hdrsz && read_done) begin
blk_type <= din_r[7];
state <= 4;
end
end else begin
if(pilot) begin
tick <= 2168;
pilot <= pilot - 1'b1;
end else begin
blk_type <= din_r[7];
if(~din_r[7] & ~turbo) pilot <= 4844;
state <= state + 1'b1;
if(req_hdr & (din_r != 0)) begin
state <= 4;
skip <= 1;
end
end
end
end
2: begin
if(pilot) begin
tick <= 2168;
pilot <= pilot - 1'b1;
end else begin
tick <= 667;
state <= state + 1'b1;
end
end
3: begin
tick <= 735;
state <= state + 1'b1;
end
4: begin //data
if(blocksz) begin
if(read_done) begin
read_done <= 0;
data <= din_r;
read_cnt <= read_cnt - 1'b1;
addr <= addr + 1'b1;
bitcnt <= 8;
if(skip || turboskip) begin
blocksz <= blocksz - 1'b1;
timeout <= 0;
end else begin
state <= state + 1'b1;
if(turbo) state <= 7;
end
end
end else begin
turboskip <= 0;
if(!read_cnt || !timeout) begin
if(blk_type && read_cnt) begin
blk_num <= blk_num + 1'b1;
blk_list[blk_num + 1'b1] <= read_cnt;
play_pause <= ~skip;
auto_blk <= 0;
skip <= 0;
end
blk_type <= 0;
state <= 0;
end else begin
timeout <= timeout - 1'b1;
end
end
end
5: begin
if(bitcnt) begin
if(data[7]) tick <= 1710;
else tick <= 855;
state <= state + 1'b1;
end else begin
blocksz <= blocksz - 1'b1;
state <= state - 1'b1;
end
end
6: begin
if(data[7]) tick <= 1710;
else tick <= 855;
data <= {data[6:0], 1'b0};
bitcnt <= bitcnt - 1'b1;
state <= state - 1'b1;
end
7: begin //turbo mode
if(byte_wait) begin
byte_ready <= 1;
state <= state + 1'b1;
end else if (!turbo) begin
//skip to the block's end if the Speccy
//already finished loading
turboskip <= 1;
blocksz <= blocksz - 1'b1;
state <= 4;
end
end
8: begin
if(!byte_wait) begin
byte_ready <= 0;
blocksz <= blocksz - 1'b1;
state <= 4;
end
end
default:;
endcase
end
end
old_prev <= prev;
if(prev & ~old_prev & ~turbo) begin
play_pause <= 0;
auto_blk <= 0;
if((state>3) || !blk_num) begin
read_cnt <= blk_list[blk_num];
addr <= size - blk_list[blk_num];
end else begin
blk_num <= blk_num - 1'b1;
read_cnt <= blk_list[blk_num - 1'b1];
addr <= size - blk_list[blk_num - 1'b1];
end
state <= 0;
tick <= 0;
end
old_next <= next;
if(next & ~old_next & ~turbo) begin
play_pause <= 0;
auto_blk <= 0;
skip <= 1;
tick <= 0;
end
end else begin
// CSW file
if(old_stdload & ~stdload) play_pause <= 1;
if(hdrsz && read_done) begin
if(hdrsz == 7) freq[ 7:0] <= din_r;
if(hdrsz == 6) freq[15:8] <= din_r;
read_done <= 0;
read_cnt <= read_cnt - 1'd1;
addr <= addr + 1'b1;
hdrsz <= hdrsz - 1'd1;
end
if(!hdrsz && read_cnt && !play_pause) begin
if((bitcnt <= 1) || (reload32 != 0)) begin
if(read_done) begin
if(reload32 != 0) begin
bitcnt <= {din_r, bitcnt[31:8]};
reload32 <= reload32 - 1'd1;
end else begin
if(din_r != 0) bitcnt <= {24'd0, din_r};
else reload32 <= 4;
audio_out <= ~audio_out;
end
read_done <= 0;
read_cnt <= read_cnt - 1'd1;
addr <= addr + 1'b1;
end
end else begin
clk_play_cnt <= clk_play_cnt + freq;
if(clk_play_cnt > CLOCK) begin
clk_play_cnt <= clk_play_cnt - CLOCK;
bitcnt <= bitcnt - 1'd1;
end
end
end
end
end
end
endmodule
//////////////////////////////////////////////////////////////////////////
module smart_tape
(
input reset,
input clk_sys,
input ce,
output reg turbo,
input pause,
input prev,
input next,
output led,
output active,
output available,
input buff_rd_en,
output buff_rd,
output [24:0] buff_addr,
input [7:0] buff_din,
input ioctl_download,
input tape_mode,
input [24:0] tape_size,
input req_hdr,
output audio_out,
input [15:0] addr,
input m1,
input rom_en,
output dout_en,
output [7:0] dout
);
assign dout_en = tape_ld1 | tape_ld2;
assign dout = tape_ld2 ? 8'h0 : tape_stub[addr - 16'h5CA];
assign led = act_cnt[24] ? act_cnt[23:16] > act_cnt[7:0] : act_cnt[23:16] <= act_cnt[7:0];
reg [24:0] act_cnt;
always @(posedge clk_sys) if(active || ~(available ^ act_cnt[24]) || act_cnt[23:0]) act_cnt <= act_cnt + 1'd1;
reg [7:0] tape_stub[14] = '{'h18, 'hFE, 'h2E, 'hFF, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
wire [7:0] tape_dout;
wire byte_ready;
reg byte_wait;
reg stdload;
reg stdhdr;
reg tape_ready;
tape tape
(
.*,
.req_hdr(stdhdr),
.addr(buff_addr),
.din(buff_din),
.dout(tape_dout),
.rd_en(buff_rd_en),
.rd(buff_rd)
);
wire tape_ld1 = ((addr >= 'h5CA) & (addr < 'h5D8) & rom_en & turbo);
wire tape_ld2 = ((addr >= 'h56C) & (addr < 'h58F) & rom_en & turbo);
always @(posedge clk_sys) begin
reg old_m1;
reg old_download;
reg allow_turbo;
old_m1 <= m1;
old_download <= ioctl_download;
if(m1 & ~old_m1) begin
if((addr == 'h5ED) & rom_en) stdload <= 1;
if((addr == 'h562) & rom_en) {turbo, stdhdr} <= {allow_turbo & available, req_hdr};
if((addr >= 'h605) | (addr < 'h53F) | ~rom_en) {turbo, stdhdr, stdload} <= 0;
if(tape_ld1 & (addr < 'h5CC)) begin
byte_wait <= 1;
tape_stub[3] <= tape_dout;
if(byte_ready) tape_stub[1] <= 0;
end else begin
byte_wait <= 0;
end
if(!tape_ld1) tape_stub[1] <= 'hFE;
end
if(reset | (prev & next) | ioctl_download) {tape_ready, allow_turbo} <= 0;
if(old_download & ~ioctl_download) {tape_ready, allow_turbo} <= {1'b1, ~stdload & tape_mode};
end
endmodule