-
Notifications
You must be signed in to change notification settings - Fork 11
/
SAMCoupe.sv
932 lines (791 loc) · 21.5 KB
/
SAMCoupe.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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
//============================================================================
//
// SAM Coupe replica for MiSTer
// Copyright (C) 2017-2019 Sorgelig
//
// This program 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 2 of the License, or (at your option)
// any later version.
//
// This program 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, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
//============================================================================
module emu
(
//Master input clock
input CLK_50M,
//Async reset from top-level module.
//Can be used as initial reset.
input RESET,
//Must be passed to hps_io module
inout [48:0] HPS_BUS,
//Base video clock. Usually equals to CLK_SYS.
output CLK_VIDEO,
//Multiple resolutions are supported using different CE_PIXEL rates.
//Must be based on CLK_VIDEO
output CE_PIXEL,
//Video aspect ratio for HDMI. Most retro systems have ratio 4:3.
//if VIDEO_ARX[12] or VIDEO_ARY[12] is set then [11:0] contains scaled size instead of aspect ratio.
output [12:0] VIDEO_ARX,
output [12:0] VIDEO_ARY,
output [7:0] VGA_R,
output [7:0] VGA_G,
output [7:0] VGA_B,
output VGA_HS,
output VGA_VS,
output VGA_DE, // = ~(VBlank | HBlank)
output VGA_F1,
output [1:0] VGA_SL,
output VGA_SCALER, // Force VGA scaler
output VGA_DISABLE, // analog out is off
input [11:0] HDMI_WIDTH,
input [11:0] HDMI_HEIGHT,
output HDMI_FREEZE,
`ifdef MISTER_FB
// Use framebuffer in DDRAM
// FB_FORMAT:
// [2:0] : 011=8bpp(palette) 100=16bpp 101=24bpp 110=32bpp
// [3] : 0=16bits 565 1=16bits 1555
// [4] : 0=RGB 1=BGR (for 16/24/32 modes)
//
// FB_STRIDE either 0 (rounded to 256 bytes) or multiple of pixel size (in bytes)
output FB_EN,
output [4:0] FB_FORMAT,
output [11:0] FB_WIDTH,
output [11:0] FB_HEIGHT,
output [31:0] FB_BASE,
output [13:0] FB_STRIDE,
input FB_VBL,
input FB_LL,
output FB_FORCE_BLANK,
`ifdef MISTER_FB_PALETTE
// Palette control for 8bit modes.
// Ignored for other video modes.
output FB_PAL_CLK,
output [7:0] FB_PAL_ADDR,
output [23:0] FB_PAL_DOUT,
input [23:0] FB_PAL_DIN,
output FB_PAL_WR,
`endif
`endif
output LED_USER, // 1 - ON, 0 - OFF.
// b[1]: 0 - LED status is system status OR'd with b[0]
// 1 - LED status is controled solely by b[0]
// hint: supply 2'b00 to let the system control the LED.
output [1:0] LED_POWER,
output [1:0] LED_DISK,
// I/O board button press simulation (active high)
// b[1]: user button
// b[0]: osd button
output [1:0] BUTTONS,
input CLK_AUDIO, // 24.576 MHz
output [15:0] AUDIO_L,
output [15:0] AUDIO_R,
output AUDIO_S, // 1 - signed audio samples, 0 - unsigned
output [1:0] AUDIO_MIX, // 0 - no mix, 1 - 25%, 2 - 50%, 3 - 100% (mono)
//ADC
inout [3:0] ADC_BUS,
//SD-SPI
output SD_SCK,
output SD_MOSI,
input SD_MISO,
output SD_CS,
input SD_CD,
//High latency DDR3 RAM interface
//Use for non-critical time purposes
output DDRAM_CLK,
input DDRAM_BUSY,
output [7:0] DDRAM_BURSTCNT,
output [28:0] DDRAM_ADDR,
input [63:0] DDRAM_DOUT,
input DDRAM_DOUT_READY,
output DDRAM_RD,
output [63:0] DDRAM_DIN,
output [7:0] DDRAM_BE,
output DDRAM_WE,
//SDRAM interface with lower latency
output SDRAM_CLK,
output SDRAM_CKE,
output [12:0] SDRAM_A,
output [1:0] SDRAM_BA,
inout [15:0] SDRAM_DQ,
output SDRAM_DQML,
output SDRAM_DQMH,
output SDRAM_nCS,
output SDRAM_nCAS,
output SDRAM_nRAS,
output SDRAM_nWE,
`ifdef MISTER_DUAL_SDRAM
//Secondary SDRAM
//Set all output SDRAM_* signals to Z ASAP if SDRAM2_EN is 0
input SDRAM2_EN,
output SDRAM2_CLK,
output [12:0] SDRAM2_A,
output [1:0] SDRAM2_BA,
inout [15:0] SDRAM2_DQ,
output SDRAM2_nCS,
output SDRAM2_nCAS,
output SDRAM2_nRAS,
output SDRAM2_nWE,
`endif
input UART_CTS,
output UART_RTS,
input UART_RXD,
output UART_TXD,
output UART_DTR,
input UART_DSR,
// Open-drain User port.
// 0 - D+/RX
// 1 - D-/TX
// 2..6 - USR2..USR6
// Set USER_OUT to 1 to read from USER_IN.
input [6:0] USER_IN,
output [6:0] USER_OUT,
input OSD_STATUS
);
assign ADC_BUS = 'Z;
assign USER_OUT = '1;
assign {UART_RTS, UART_TXD, UART_DTR} = 0;
assign {SD_SCK, SD_MOSI, SD_CS} = 'Z;
assign LED_USER = ioctl_download | fdd2_io;
assign LED_DISK = 0;
assign LED_POWER = 0;
assign BUTTONS = 0;
assign VGA_SCALER= 0;
assign VGA_DISABLE = 0;
assign HDMI_FREEZE = 0;
assign CLK_VIDEO = clk_sys;
assign {DDRAM_CLK, DDRAM_BURSTCNT, DDRAM_ADDR, DDRAM_DIN, DDRAM_BE, DDRAM_RD, DDRAM_WE} = 0;
assign {SD_SCK, SD_MOSI, SD_CS} = 'Z;
`include "build_id.v"
localparam CONF_STR =
{
"SAMCOUPE;;",
"-;",
"S0,DSKMGTIMG,Drive 1;",
"S1,DSKMGTIMG,Drive 2;",
"-;",
"ODE,Aspect ratio,Original,Full Screen,[ARC1],[ARC2];",
"O12,Scandoubler Fx,None,HQ2x,CRT 25%,CRT 50%;",
"-;",
"d1OF,Vertical Crop,No,Yes;",
"OGH,Scale,Normal,V-Integer,Narrower HV-Integer,Wider HV-Integer;",
"-;",
"O67,Stereo mix,none,25%,50%,100%;",
"-;",
"O8A,CPU Speed,Normal,6MHz,9.6MHz,12MHz,24MHz;",
"OBC,ZX Mode Speed,Emulated,Full,Real;",
"O5,External RAM,on,off;",
"-;",
"R0,Reset;",
"J,Fire 1,Fire 2;",
"V,v",`BUILD_DATE
};
//////////////////// CLOCKS ///////////////////
wire clk_sys;
wire locked;
pll pll
(
.refclk(CLK_50M),
.rst(0),
.outclk_0(clk_sys),
.locked(locked)
);
reg ce_1m;
reg ce_psg; //8MHz
reg ce_6mp;
reg ce_6mn;
reg ce_24m;
reg cpu_en;
reg cpu_p;
reg cpu_n;
wire ce_cpu_p = cpu_en & cpu_p;
wire ce_cpu_n = cpu_en & cpu_n;
reg [2:0] req_speed, cpu_speed = 0;
always_comb begin
casex({turbo_boot, !video_mode && (status[12:11] == 2)})
'b1X: req_speed = 5;
'b01: req_speed = 0;
'b00: req_speed = 3'd1 + status[10:8];
default: req_speed = 1;
endcase
end
reg turbo_boot = 0;
always @(posedge clk_sys) begin
reg old_rd, skip;
old_rd <= port_rd;
if(reset) {skip,turbo_boot} <= 1;
else if(~old_rd & port_rd & kbdr_sel) begin
skip <= 1;
if(skip) turbo_boot <= 0;
end
end
wire [4:0] cpu_max[6] = '{26, 15, 15, 9, 7, 3};
wire [4:0] cpu_mid[6] = '{13, 8, 8, 5, 4, 2};
always @(posedge clk_sys) begin
reg [3:0] counter = 0;
reg [3:0] psg_div = 0;
reg [4:0] cpu_div = 0;
reg [6:0] meg_div = 0;
reg cnt_en = 1;
reg skip;
counter <= counter + 1'd1;
ce_24m <= !counter[1:0];
ce_6mp <= !counter[3] & !counter[2:0];
ce_6mn <= counter[3] & !counter[2:0];
{cpu_p, cpu_n} <= 0;
if(cnt_en & ~(ram_busy & (cpu_speed >= 3) & (cpu_div == (cpu_mid[cpu_speed])))) begin
cpu_div <= cpu_div + 1'd1;
if(cpu_div >= cpu_max[cpu_speed]) cpu_div <= 0;
if(!cpu_div) cpu_en <= ~((cpu_speed == 1) & (ram_wait | io_wait));
cpu_p <= (cpu_div == 0);
cpu_n <= (cpu_div == cpu_mid[cpu_speed]);
end
if((cpu_speed != req_speed) & nWR & nRD & ce_cpu_p) begin
cpu_div <= 1;
cnt_en <= 0;
skip <= 0;
end
if(~cnt_en & !counter) begin
skip <= 1;
if(skip) begin
cpu_speed <= req_speed;
cnt_en <= 1;
end
end
psg_div <= psg_div + 1'd1;
if(psg_div == 11) psg_div <= 0;
ce_psg <= !psg_div;
meg_div <= meg_div + 1'd1;
if(meg_div == 95) meg_div <= 0;
ce_1m <= !meg_div;
end
// Contention model
wire ram_acc = ~nMREQ & nRFSH & ~rom0_sel & ~rom1_sel & ~ext_ram;
wire io_acc = ~nIORQ & ~(nRD & nWR) & nM1 & &addr[7:3];
reg ram_wait, io_wait;
always @(posedge clk_sys) begin
reg old_ram, old_io, old_memcont, old_iocont;
old_ram <= ram_acc;
if(~old_ram & ram_acc & mem_contention) ram_wait <= 1;
old_memcont <= mem_contention;
if(~mem_contention & old_memcont) ram_wait <= 0;
old_io <= io_acc;
if(~old_io & io_acc & io_contention) io_wait <= 1;
old_iocont <= io_contention;
if(~io_contention & old_iocont) io_wait <= 0;
end
////////////////// HPS I/O ///////////////////
wire [10:0] ps2_key;
wire [24:0] ps2_mouse;
wire [15:0] joystick_0;
wire [15:0] joystick_1;
wire [1:0] buttons;
wire forced_scandoubler;
wire [21:0] gamma_bus;
wire [31:0] status;
wire [31:0] sd_lba[2];
wire [1:0] sd_rd;
wire [1:0] sd_wr;
wire [1:0] sd_ack;
wire [8:0] sd_buff_addr;
wire [7:0] sd_buff_dout;
wire [7:0] sd_buff_din[2];
wire sd_buff_wr;
wire [1:0] img_mounted;
wire [63:0] img_size;
wire img_readonly;
wire ioctl_wr;
wire [24:0] ioctl_addr;
wire [7:0] ioctl_dout;
wire ioctl_download;
wire [7:0] ioctl_index;
hps_io #(.CONF_STR(CONF_STR), .VDNUM(2)) hps_io
(
.clk_sys(clk_sys),
.HPS_BUS(HPS_BUS),
.ps2_key(ps2_key),
.ps2_mouse(ps2_mouse),
.joystick_0(joystick_0),
.joystick_1(joystick_1),
.buttons(buttons),
.forced_scandoubler(forced_scandoubler),
.gamma_bus(gamma_bus),
.status(status),
.status_menumask({|vcrop,1'b0}),
.sd_lba(sd_lba),
.sd_rd(sd_rd),
.sd_wr(sd_wr),
.sd_ack(sd_ack),
.sd_buff_addr(sd_buff_addr),
.sd_buff_dout(sd_buff_dout),
.sd_buff_din(sd_buff_din),
.sd_buff_wr(sd_buff_wr),
.img_mounted(img_mounted),
.img_size(img_size),
.img_readonly(img_readonly),
.ioctl_wr(ioctl_wr),
.ioctl_addr(ioctl_addr),
.ioctl_dout(ioctl_dout),
.ioctl_download(ioctl_download),
.ioctl_index(ioctl_index)
);
/////////////////// CPU ///////////////////
wire [15:0] addr;
wire [7:0] cpu_din;
wire [7:0] cpu_dout;
wire nM1;
wire nMREQ;
wire nIORQ;
wire nRD;
wire nWR;
wire nRFSH;
reg nINT;
wire reset = buttons[1] | status[0] | cold_reset | warm_reset;
wire cold_reset = (mod[1] & Fn[11]) | init_reset;
wire warm_reset = mod[2] & Fn[11];
wire port_we = ~nIORQ & ~nWR & nM1;
wire port_rd = ~nIORQ & ~nRD & nM1;
always @(posedge clk_sys) if(ce_cpu_p) nINT <= ~(INT_line | INT_frame | INT_midi);
T80pa cpu
(
.RESET_n(~reset),
.CLK(clk_sys),
.CEN_p(ce_cpu_p),
.CEN_n(ce_cpu_n),
.WAIT_n(1),
.INT_n(nINT),
.NMI_n((mod[2:1]==0) & Fn[11]),
.BUSRQ_n(1),
.M1_n(nM1),
.MREQ_n(nMREQ),
.IORQ_n(nIORQ),
.RD_n(nRD),
.WR_n(nWR),
.RFSH_n(nRFSH),
.HALT_n(1),
.A(addr),
.DO(cpu_dout),
.DI(cpu_din)
);
always_comb begin
casex({nMREQ, rom0_sel | rom1_sel, ~nM1 | nIORQ | nRD})
'b011: cpu_din = bios_dout;
'b001: cpu_din = ext_ena ? ram_dout : 8'hFF;
'b1X0: cpu_din = asic_dout;
default: cpu_din = 8'hFF;
endcase
end
reg init_reset = 1;
always @(posedge clk_sys) begin
reg old_rst;
old_rst <= status[0];
if(old_rst & ~status[0]) init_reset <= 0;
end
////////////////// MEMORY //////////////////
wire [8:0] ram_page;
always_comb begin
casex({ext_ram, addr[15:14]})
'b1_X0: ram_page = { 1'b1, ext_c };
'b1_X1: ram_page = { 1'b1, ext_d };
'b0_00: ram_page = { page_ab, };
'b0_01: ram_page = { page_ab + 1'b1 };
'b0_10: ram_page = { page_cd, };
'b0_11: ram_page = { page_cd + 1'b1 };
endcase
end
wire ram_busy;
wire [7:0] ram_dout;
sdram ram
(
.*,
.init(~locked),
.clk(clk_sys),
.addr({ram_page, addr[13:0]}),
.dout(ram_dout),
.din(cpu_dout),
.we(~(rom0_sel | rom1_sel | ram_wp) & ~nMREQ & ~nWR & ext_ena),
.rd(~(rom0_sel | rom1_sel ) & ~nMREQ & ~nRD),
.vid_addr1(vram_addr1),
.vid_addr2(vram_addr2),
.vid_data1(vram_dout1),
.vid_data2(vram_dout2),
.vid_rd(vram_rd)
);
reg [7:0] bios_dout;
(* ram_init_file = "rtl/bios.mif" *) reg [7:0] bios[32768];
always @(posedge clk_sys) if (ioctl_wr && ioctl_download && !ioctl_index) bios[ioctl_addr[14:0]] <= ioctl_dout;
always @(posedge clk_sys) bios_dout <= bios[{addr[15], addr[13:0]}];
////////////////////// EXT.RAM ////////////////////
reg [7:0] ext_c;
reg [7:0] ext_d;
reg ext_dis;
wire ext_ena = ~(ext_ram & ext_dis);
wire ext_c_sel = (addr[7:0] == 128);
wire ext_d_sel = (addr[7:0] == 129);
always @(posedge clk_sys) begin
reg old_we;
old_we <= port_we;
if(port_we & ~old_we) begin
if(ext_c_sel) ext_c <= cpu_dout;
if(ext_d_sel) ext_d <= cpu_dout;
end
if(reset) ext_dis <= status[5];
end
//////////////////// ASIC PORTS ///////////////////
reg [7:0] brdr;
wire ear_out = brdr[4];
wire mic_out = 0; // brdr[3]; it seems not used in SAM Coupe.
reg [7:0] lmpr;
wire [4:0] page_ab = lmpr[4:0];
wire rom0_sel =~lmpr[5] & !addr[15:14];
wire rom1_sel = lmpr[6] & &addr[15:14];
wire ram_wp = lmpr[7] & !addr[15:14];
reg [7:0] hmpr;
wire [4:0] page_cd = hmpr[4:0];
wire [1:0] mode3_hi = hmpr[6:5];
wire ext_ram = hmpr[7] & addr[15];
wire sid_sel = (addr[7:0] == 212); // D4
wire fdd_sel = &addr[7:5] & ~addr[3]; // 224-231(E0-E7), 240-247(F0-F7)
wire lptd_sel = (addr[7:0] == 232); // E8
wire lpts_sel = (addr[7:0] == 233); // E9
//clut, hpen, lpen = (addr[7:0] == 248); // F8
wire stat_sel = (addr[7:0] == 249); // F9
wire lmpr_sel = (addr[7:0] == 250); // FA
wire hmpr_sel = (addr[7:0] == 251); // FB
// vmpr_sel = (addr[7:0] == 252); // FC
wire midi_sel = (addr[7:0] == 253); // FD
wire kbdr_sel = (addr[7:0] == 254); // FE
wire brdr_sel = (addr[7:0] == 254); // FE
// attr_sel = (addr[7:0] == 255); // FF
always @(posedge clk_sys) begin
reg old_we;
if(reset) begin
lmpr <= 0;
hmpr <= 0;
brdr <= 0;
end else begin
old_we <= port_we;
if(port_we & ~old_we) begin
if(brdr_sel) brdr <= cpu_dout;
if(lmpr_sel) lmpr <= cpu_dout;
if(hmpr_sel) hmpr <= cpu_dout;
end
end
end
reg [7:0] asic_dout;
always_comb begin
casex({kbdr_sel, stat_sel, lmpr_sel, hmpr_sel, vid_sel, fdd_sel, kjoy_sel, lptd_sel | lpts_sel})
'b1XXXXXXX: asic_dout = {soff, ~tape_in, 1'b0, hid_data};
'b01XXXXXX: asic_dout = {key_data[7:5], ~INT_midi, ~INT_frame, 2'b11, ~INT_line};
'b001XXXXX: asic_dout = lmpr;
'b0001XXXX: asic_dout = hmpr;
'b00001XXX: asic_dout = vid_dout;
'b000001XX: asic_dout = fdd1_io ? fdd1_dout : fdd2_dout;
'b0000001X: asic_dout = {2'b00, joystick_0[5:0] | joystick_1[5:0]};
'b00000001: asic_dout = 0; // fake LPT port.
'b00000000: asic_dout = 8'hFF;
endcase
end
reg INT_midi;
reg midi_tx;
always @(posedge clk_sys) begin
reg old_we;
reg [8:0] tx_time;
reg available;
if(reset) begin
INT_midi <=0;
tx_time <= 0;
midi_tx <= 0;
available <= 0;
end else begin
if(ce_1m) begin
if(tx_time) begin
tx_time <= tx_time - 1'd1;
if(tx_time == 15) INT_midi <= 1;
end else begin
{INT_midi, midi_tx} <= 0;
if(available) begin
midi_tx <= 1;
tx_time <= 319;
available <= 0;
end
end
end
old_we <= port_we;
if(port_we & ~old_we & midi_sel) available <= 1;
end
end
//////////////////// AUDIO ///////////////////
wire [7:0] psg_ch_l;
wire [7:0] psg_ch_r;
wire tape_in = 0; //tape is not implemented (yet?)
saa1099 psg
(
.clk_sys(clk_sys),
.ce(ce_psg),
.rst_n(~reset),
.cs_n((addr[7:0] != 255) | nIORQ),
.a0(addr[8]),
.wr_n(nWR),
.din(cpu_dout),
.out_l(psg_ch_l),
.out_r(psg_ch_r)
);
wire [18:0] aud_l = {1'b0, psg_ch_l, psg_ch_l, 2'd0} + {1'b0, ear_out, mic_out, tape_in, 15'd0} + {vox_l,vox_l,2'd0} + sid_out;
wire [18:0] aud_r = {1'b0, psg_ch_r, psg_ch_r, 2'd0} + {1'b0, ear_out, mic_out, tape_in, 15'd0} + {vox_r,vox_r,2'd0} + sid_out;
assign AUDIO_L = aud_l[18:3];
assign AUDIO_R = aud_r[18:3];
assign AUDIO_S = 0;
assign AUDIO_MIX = status[7:6];
reg [7:0] vox_l, vox_r;
always @(posedge clk_sys) begin
reg old_we, old_stb;
reg [7:0] data;
if(reset) {vox_l, vox_r, old_stb, data} <= 0;
else begin
old_we <= port_we;
if(port_we & ~old_we) begin
if(lptd_sel) data <= cpu_dout;
if(lpts_sel) begin
if(~old_stb & cpu_dout[0]) vox_l <= data;
if(old_stb & ~cpu_dout[0]) vox_r <= data;
old_stb <= cpu_dout[0];
end
end
end
end
// SID uses signed samples and requires special handling
softmuter sid_muter
(
.clk_sys(clk_sys),
.ce(ce_1m),
.enable(sid_act),
.vol_in({~sid_outraw[17], sid_outraw[16:0]}),
.vol_out(sid_out)
);
wire [17:0] sid_out;
wire [17:0] sid_outraw;
wire sid_act;
sid_top sid
(
.clock(clk_sys),
.reset(reset),
.addr(addr[12:8]),
.wren(port_we && sid_sel && video_mode), // disable in ZX mode
.wdata(cpu_dout),
.comb_wave_l(0),
.comb_wave_r(0),
.extfilter_en(1),
.active(sid_act),
.start_iter(ce_1m),
.sample_left(sid_outraw)
);
//////////////////// VIDEO ///////////////////
wire [18:0] vram_addr1;
wire [18:0] vram_addr2;
wire vram_rd;
wire [15:0] vram_dout1;
wire [15:0] vram_dout2;
wire [7:0] vid_dout;
wire vid_sel;
wire soff = (brdr[7] & video_mode[1]) | (turbo_boot & ~reset);
wire INT_line;
wire INT_frame;
wire mem_contention;
wire io_contention;
wire [1:0] video_mode;
wire [1:0] scale = status[2:1];
video video
(
.*,
.VGA_DE(vga_de),
.full_zx(status[12:11] == 1),
.hq2x(scale==1),
.scandoubler(scale || forced_scandoubler),
.din(cpu_dout),
.dout(vid_dout),
.dout_en(vid_sel)
);
assign VGA_SL = scale ? scale - 1'd1 : 2'd0;
assign VGA_F1 = 0;
reg [9:0] vcrop;
reg crop;
always @(posedge CLK_VIDEO) begin
vcrop <= 0;
crop <= 0;
if(HDMI_WIDTH >= (HDMI_HEIGHT + HDMI_HEIGHT[11:1]) && !forced_scandoubler && !scale) begin
if(HDMI_HEIGHT == 480) vcrop <= 240;
if(HDMI_HEIGHT == 600) begin vcrop <= 200; crop <= vcrop_en; end
if(HDMI_HEIGHT == 720) vcrop <= 240;
if(HDMI_HEIGHT == 768) vcrop <= 256;
if(HDMI_HEIGHT == 800) begin vcrop <= 200; crop <= vcrop_en; end
if(HDMI_HEIGHT == 1080) vcrop <= 216;
if(HDMI_HEIGHT == 1200) vcrop <= 240;
end
end
wire [1:0] ar = status[14:13];
wire vcrop_en = status[15];
wire vga_de;
video_freak video_freak
(
.*,
.VGA_DE_IN(vga_de),
.ARX((!ar) ? (crop ? 12'd4 : 12'd5) : (ar - 1'd1)),
.ARY((!ar) ? 12'd4 : 12'd0),
.CROP_SIZE(vcrop_en ? vcrop : 10'd0),
.CROP_OFF(0),
.SCALE(status[17:16])
);
//////////////////// HID /////////////////////
wire [11:1] Fn;
wire [2:0] mod;
wire [7:0] key_data;
reg autostart;
keyboard kbd( .*, .restart(rom0_sel & (addr == 0) & ~nMREQ & ~nRD));
wire kjoy_sel = (addr[7:0] == 'h1F);
wire [4:0] hid_data = key_data[4:0] & mouse_data
& (addr[12] ? 5'b11111 : ~{joystick_0[1], joystick_0[0], joystick_0[2], joystick_0[3], joystick_0[4] | joystick_0[5]})
& (addr[11] ? 5'b11111 : ~{joystick_1[4] | joystick_1[5], joystick_1[3], joystick_1[2], joystick_1[0], joystick_1[1]});
wire [4:0] mouse_data;
mouse mouse( .*, .dout(mouse_data), .rd(kbdr_sel & &addr[15:8] & nM1 & ~nIORQ & ~nRD));
/////////////////// FDC ///////////////////
// FDD1
wire fdd1_busy;
reg fdd1_ready;
reg fdd1_side;
wire fdd1_io = fdd_sel & ~addr[4] & ~nIORQ & nM1;
wire [7:0] fdd1_dout;
reg fdd1_wp;
always @(posedge clk_sys) begin
reg old_wr;
reg old_mounted;
old_wr <= nWR;
if(old_wr & ~nWR & fdd1_io) fdd1_side <= addr[2];
old_mounted <= img_mounted[0];
if(cold_reset) fdd1_ready <= 0;
else if(~old_mounted & img_mounted[0]) {fdd1_ready, fdd1_wp} <= {1'b1, img_readonly};
end
wd1793 #(1) fdd1
(
.clk_sys(clk_sys),
.ce(cpu_n),
.reset(reset),
.io_en(fdd1_io & fdd1_ready),
.rd(~nRD),
.wr(~nWR),
.addr(addr[1:0]),
.din(cpu_dout),
.dout(fdd1_dout),
.img_mounted(img_mounted[0]),
.img_size(img_size[19:0]),
.sd_lba(sd_lba[0]),
.sd_rd(sd_rd[0]),
.sd_wr(sd_wr[0]),
.sd_ack(sd_ack[0]),
.sd_buff_addr(sd_buff_addr),
.sd_buff_dout(sd_buff_dout),
.sd_buff_din(sd_buff_din[0]),
.sd_buff_wr(sd_buff_wr),
.wp(fdd1_wp),
.size_code(4),
.layout(ioctl_index[7:6] == 2),
.side(fdd1_side),
.ready(fdd1_ready),
.prepare(fdd1_busy),
.input_active(0),
.input_addr(0),
.input_data(0),
.input_wr(0),
.buff_din(0)
);
always @(posedge clk_sys) begin
reg old_busy;
integer counter;
if(reset) begin
autostart <= 0;
counter <= 0;
end else begin
old_busy <= fdd1_busy;
if(old_busy & ~fdd1_busy & fdd1_ready) begin
autostart <= 1;
counter <= 1000000;
end else if(ce_6mp && counter) begin
counter <= counter - 1;
if(counter == 1) autostart <= 0;
end
end
end
// FDD2
reg fdd2_ready;
reg fdd2_side;
wire fdd2_io = fdd_sel & addr[4] & ~nIORQ & nM1;
wire [7:0] fdd2_dout;
reg fdd2_wp;
always @(posedge clk_sys) begin
reg old_wr;
reg old_mounted;
old_wr <= nWR;
if(old_wr & ~nWR & fdd2_io) fdd2_side <= addr[2];
old_mounted <= img_mounted[1];
if(cold_reset) fdd2_ready <= 0;
else if(~old_mounted & img_mounted[1]) {fdd2_ready, fdd2_wp} <= {1'b1, img_readonly};
end
wd1793 #(1) fdd2
(
.clk_sys(clk_sys),
.ce(cpu_n),
.reset(reset),
.io_en(fdd2_io & fdd2_ready),
.rd(~nRD),
.wr(~nWR),
.addr(addr[1:0]),
.din(cpu_dout),
.dout(fdd2_dout),
.img_mounted(img_mounted[1]),
.img_size(img_size[19:0]),
.sd_lba(sd_lba[1]),
.sd_rd(sd_rd[1]),
.sd_wr(sd_wr[1]),
.sd_ack(sd_ack[1]),
.sd_buff_addr(sd_buff_addr),
.sd_buff_dout(sd_buff_dout),
.sd_buff_din(sd_buff_din[1]),
.sd_buff_wr(sd_buff_wr),
.wp(fdd2_wp),
.size_code(4),
.layout(ioctl_index[7:6] == 2),
.side(fdd2_side),
.ready(fdd2_ready),
.input_active(0),
.input_addr(0),
.input_data(0),
.input_wr(0),
.buff_din(0)
);
endmodule
module softmuter
(
input clk_sys,
input ce,
input enable,
input [17:0] vol_in,
output [17:0] vol_out
);
reg [17:0] att = '1;
assign vol_out = (vol_in > att) ? vol_in - att : 18'd0;
always @(posedge clk_sys) begin
if(ce) begin
if( enable && att) att <= att - 1'd1;
if(~enable && ~&att) att <= att + 1'd1;
end
end
endmodule