mirror of
https://github.com/Gehstock/Mist_FPGA.git
synced 2026-02-02 06:40:51 +00:00
622 lines
12 KiB
Systemverilog
622 lines
12 KiB
Systemverilog
module Interact_top(
|
|
input clk_cas,
|
|
input clk_sys,
|
|
input reset,
|
|
input [10:0] ps2_key,
|
|
input [15:0] joystick_0,
|
|
input [15:0] joystick_1,
|
|
input [15:0] joystick_analog_0,
|
|
input [15:0] joystick_analog_1,
|
|
input test_sw,
|
|
input tape_play,
|
|
input tape_rewind,
|
|
input [7:0] ioctl_data,
|
|
input ioctl_wr,
|
|
input [15:0] ioctl_addr,
|
|
input ioctl_download,
|
|
output [15:0] audio,
|
|
output reg hblank_n,
|
|
output vblank_n,
|
|
output hsync_n,
|
|
output vsync_n,
|
|
output [7:0] R,
|
|
output [7:0] G,
|
|
output [7:0] B,
|
|
output reg tape_playing
|
|
);
|
|
|
|
/////////////////////// CLOCKS ///////////////////////////////
|
|
wire rst_n = ~reset;
|
|
|
|
// vm80a needs a nice long reset
|
|
reg [7:0] rcnt = 8'h00;
|
|
wire cpu_rst_n = (rcnt == 8'hFF);
|
|
|
|
always @(posedge clk_sys)
|
|
begin
|
|
if (reset)
|
|
rcnt <= 8'h00;
|
|
else
|
|
if (rcnt != 8'hFF) rcnt <= rcnt + 8'h01;
|
|
end
|
|
|
|
|
|
wire ph1;
|
|
wire ph2;
|
|
wire cbclk;
|
|
wire pix_a;
|
|
wire vid_sel;
|
|
wire [11:0] vid_a;
|
|
wire vid_sel_n;
|
|
wire nrr_n;
|
|
wire ce_n;
|
|
wire pce;
|
|
wire vid_ltc;
|
|
wire ram_clk;
|
|
wire brst;
|
|
wire tpclk;
|
|
wire irq;
|
|
wire inte;
|
|
wire cmp_blank;
|
|
wire cmp_sync;
|
|
|
|
video_timing timing(
|
|
.clk_14m(clk_sys),
|
|
.rst_n(rst_n),
|
|
.ph1(ph1),
|
|
.ph2(ph2),
|
|
.cbclk(cbclk),
|
|
.pix_a(pix_a),
|
|
.vid_sel(vid_sel),
|
|
.vid_addr(vid_a),
|
|
.vid_sel_n(vid_sel_n),
|
|
.nrr_n(nrr_n),
|
|
.ce_n(ce_n),
|
|
.pce(pce),
|
|
.vid_ltc(vid_ltc),
|
|
.ram_clk(ram_clk),
|
|
.brst(brst),
|
|
.tpclk(tpclk),
|
|
.cmp_blank(cmp_blank),
|
|
.irq(irq),
|
|
.inte(inte),
|
|
.cmp_sync(cmp_sync),
|
|
.hblank_n(hblank_n),
|
|
.vblank_n(vblank_n),
|
|
.hsync_n(hsync_n),
|
|
.vsync_n(vsync_n)
|
|
);
|
|
|
|
/////////////////// CPU ///////////////////
|
|
|
|
wire [15:0] addr;
|
|
reg [7:0] cpu_din;
|
|
wire [7:0] cpu_dout;
|
|
wire wr_n;
|
|
wire ready;
|
|
wire hold;
|
|
wire rd;
|
|
wire sync;
|
|
wire vait;
|
|
wire hlda;
|
|
wire pin_aena;
|
|
wire pin_dena;
|
|
|
|
assign hold = 1'b0;
|
|
assign ready = 1'b1;
|
|
|
|
vm80a_core cpu(
|
|
.pin_clk(clk_sys),
|
|
.pin_f1(~ph2),
|
|
.pin_f2(ph2),
|
|
.pin_reset(~cpu_rst_n),
|
|
.pin_a(addr),
|
|
.pin_dout(cpu_dout),
|
|
.pin_din(cpu_din),
|
|
.pin_aena (pin_aena),
|
|
.pin_dena (pin_dena),
|
|
.pin_hold(hold),
|
|
.pin_ready(ready),
|
|
.pin_int(irq),
|
|
.pin_wr_n(wr_n),
|
|
.pin_dbin(rd),
|
|
.pin_inte(inte),
|
|
.pin_hlda(hlda),
|
|
.pin_wait(vait),
|
|
.pin_sync(sync)
|
|
);
|
|
|
|
|
|
//////// STATUS system control ////////////
|
|
|
|
reg[7:0] cpu_status;
|
|
wire status_inta = cpu_status[0];
|
|
//wire status_wo_n = cpu_status[1];
|
|
//wire status_stack = cpu_status[2];
|
|
//wire status_hlta = cpu_status[3];
|
|
//wire status_out = cpu_status[4];
|
|
//wire status_m1 = cpu_status[5];
|
|
//wire status_inp = cpu_status[6];
|
|
//wire status_memr = cpu_status[7];
|
|
|
|
always @(posedge clk_sys or negedge rst_n)
|
|
begin
|
|
reg old_sync;
|
|
if (!rst_n)
|
|
cpu_status <= 8'b0;
|
|
else
|
|
begin
|
|
old_sync <= sync;
|
|
if(~old_sync & sync)
|
|
cpu_status <= cpu_dout;
|
|
end
|
|
end
|
|
|
|
always_comb begin
|
|
casez({status_inta, rom_e, ram_e, ~io_3800_r_n, ~io_3000_r_n})
|
|
5'b1????: cpu_din <= 8'hFF;
|
|
5'b00001: cpu_din <= io_rd_rtc_ad;
|
|
5'b00010: cpu_din <= key_data;
|
|
5'b00100: cpu_din <= ram_out;
|
|
5'b01000: cpu_din <= rom_out;
|
|
default: cpu_din <= 8'hFF;
|
|
endcase
|
|
end
|
|
|
|
|
|
/////////////////// MEMORY ///////////////////
|
|
// 1111110000000000
|
|
// 5432109876543210
|
|
// ROM A 0000H 0000000000000000
|
|
// ROM B 0800H 0000100000000000
|
|
// IO 10 1000H 0001000000000000
|
|
// IO 18 1800H 0001100000000000
|
|
// IO 20 2000H 0010000000000000
|
|
// IO 28 2800H 0010100000000000
|
|
// IO 30 3000H 0011000000000000
|
|
// IO 38 3800H 0011100000000000
|
|
// VRAM 4000H 0100000000000000
|
|
// 49FFH 0100100111111111
|
|
// RAM 4800H 0100101000000000
|
|
|
|
wire rom_e = ~addr[15] & ~addr[14] & ~addr[13] & ~addr[12] & ~addr[11];
|
|
//wire rom_e = (addr[15:11] == 5'b00000) ? 1'b1 : 1'b0;
|
|
wire [7:0] rom_out;
|
|
|
|
interact interact(
|
|
.clk(clk_sys),
|
|
.addr(addr[10:0]),
|
|
.data(rom_out)
|
|
);
|
|
|
|
//hector1 hector1(
|
|
// .clk(clk_sys),
|
|
// .addr(addr[11:0]),
|
|
// .data(rom_out)
|
|
//);
|
|
|
|
wire ram_e = ~addr[15] & addr[14];
|
|
//wire ram_e = (addr[15:14] == 2'b01) ? 1'b1 : 1'b0;
|
|
wire [7:0] ram_out;
|
|
wire ram_w = ram_e & ~wr_n;
|
|
wire [7:0] vid_out;
|
|
|
|
dpram #(.ADDRWIDTH(14)) ram(
|
|
.clock(clk_sys),
|
|
.address_a(addr[13:0]),
|
|
.data_a(cpu_dout),
|
|
.wren_a(ram_w),
|
|
.q_a(ram_out),
|
|
.address_b({2'b0, vid_a}),
|
|
.q_b(vid_out)
|
|
);
|
|
|
|
/////////////////// Memory Mapped IO Registers ///////////////////
|
|
wire io_0000_r_n;//00_00 0_000 0000 0000
|
|
wire io_0800_r_n;//00_00 1_000 0000 0000
|
|
wire io_1000_r_n;//00_01 0_000 0000 0000
|
|
wire io_1800_r_n;//00_01 1_000 0000 0000
|
|
wire io_2000_r_n;//00_01 1_000 0000 0000
|
|
wire io_2800_r_n;//00_10 0_000 0000 0000
|
|
wire io_3000_r_n;//00_10 1_000 0000 0000
|
|
wire io_3800_r_n;//00_11 1_000 0000 0000
|
|
|
|
always_comb//Fix GFX Glitches
|
|
begin
|
|
io_0000_r_n = 1'b1;
|
|
io_0800_r_n = 1'b1;
|
|
io_1000_r_n = 1'b1;
|
|
io_1800_r_n = 1'b1;
|
|
io_2000_r_n = 1'b1;
|
|
io_2800_r_n = 1'b1;
|
|
io_3000_r_n = 1'b1;
|
|
io_3800_r_n = 1'b1;
|
|
casez({rd,addr[13:11]})
|
|
4'b1000 : io_0000_r_n = 1'b0;
|
|
4'b1001 : io_0800_r_n = 1'b0;
|
|
4'b1010 : io_1000_r_n = 1'b0;
|
|
4'b1011 : io_1800_r_n = 1'b0;
|
|
4'b1100 : io_2000_r_n = 1'b0;
|
|
4'b1101 : io_2800_r_n = 1'b0;
|
|
4'b1110 : io_3000_r_n = 1'b0;
|
|
4'b1111 : io_3800_r_n = 1'b0;
|
|
default: ;
|
|
endcase
|
|
end
|
|
|
|
wire io_0000_w_n;
|
|
wire io_0800_w_n;
|
|
wire io_1000_w_n;
|
|
wire io_1800_w_n;
|
|
wire io_2000_w_n;
|
|
wire io_2800_w_n;
|
|
wire io_3000_w_n;
|
|
wire io_3800_w_n;
|
|
|
|
//always_comb//Brings GFX Glitches Back
|
|
//begin
|
|
// io_0000_w_n = 1'b1;
|
|
// io_0800_w_n = 1'b1;
|
|
// io_1000_w_n = 1'b1;
|
|
// io_1800_w_n = 1'b1;
|
|
// io_2000_w_n = 1'b1;
|
|
// io_2800_w_n = 1'b1;
|
|
// io_3000_w_n = 1'b1;
|
|
// io_3800_w_n = 1'b1;
|
|
// casez({~wr_n,addr[13:11]})
|
|
// 4'b1000 : io_0000_w_n = 1'b0;
|
|
// 4'b1001 : io_0800_w_n = 1'b0;
|
|
// 4'b1010 : io_1000_w_n = 1'b0;
|
|
// 4'b1011 : io_1800_w_n = 1'b0;
|
|
// 4'b1100 : io_2000_w_n = 1'b0;
|
|
// 4'b1101 : io_2800_w_n = 1'b0;
|
|
// 4'b1110 : io_3000_w_n = 1'b0;
|
|
// 4'b1111 : io_3800_w_n = 1'b0;
|
|
// default: ;
|
|
// endcase
|
|
// end
|
|
|
|
//SN74LS138 IC25 (
|
|
// .a(addr[11]),
|
|
// .b(addr[12]),
|
|
// .c(addr[13]),
|
|
// .g1(rd),
|
|
// .g2an(addr[15]),
|
|
// .g2bn(addr[14]),
|
|
// .y0n(io_0000_r_n),
|
|
// .y1n(io_0800_r_n),
|
|
// .y2n(io_1000_r_n),
|
|
// .y3n(io_1800_r_n),
|
|
// .y4n(io_2000_r_n),
|
|
// .y5n(io_2800_r_n),
|
|
// .y6n(io_3000_r_n),
|
|
// .y7n(io_3800_r_n)
|
|
//);
|
|
|
|
SN74LS138 IC26 (
|
|
.a(addr[11]),
|
|
.b(addr[12]),
|
|
.c(addr[13]),
|
|
.g1(~wr_n),
|
|
.g2an(addr[15]),
|
|
.g2bn(addr[14]),
|
|
.y0n(io_0000_w_n),
|
|
.y1n(io_0800_w_n),
|
|
.y2n(io_1000_w_n),
|
|
.y3n(io_1800_w_n),
|
|
.y4n(io_2000_w_n),
|
|
.y5n(io_2800_w_n),
|
|
.y6n(io_3000_w_n),
|
|
.y7n(io_3800_w_n)
|
|
);
|
|
|
|
|
|
wire [7:0] io_rd_rtc_ad;
|
|
always_comb
|
|
casez (io_wr_misc[7:3])
|
|
5'b00111 : io_rd_rtc_ad = {tape_flux, rtc[6:0]};
|
|
5'b10111 : io_rd_rtc_ad = rtc;
|
|
5'b?1111 : io_rd_rtc_ad = {1'b0, rtc[6:0]};
|
|
5'b??001 : io_rd_rtc_ad = joystick_0[4] ? 8'h00 : 8'h80;
|
|
5'b??010 : io_rd_rtc_ad = {~joystick_analog_0[7], joystick_analog_0[6:0]};
|
|
5'b??100 : io_rd_rtc_ad = joystick_1[4] ? 8'h00 : 8'h80;
|
|
5'b??101 : io_rd_rtc_ad = {~joystick_analog_1[7], joystick_analog_1[6:0]};
|
|
default: io_rd_rtc_ad = 8'h00;
|
|
endcase
|
|
|
|
|
|
wire rtc_clr = ~rst_n | io_wr_misc[6];
|
|
reg [7:0] rtc;
|
|
wire rtc_clk = io_wr_misc[6] ? 1'b0 : (io_wr_misc[7] ? pix_a : tpclk);
|
|
|
|
always@(negedge rtc_clk or posedge rtc_clr)
|
|
begin
|
|
if (rtc_clr)
|
|
begin
|
|
rtc <= 8'b0;
|
|
end
|
|
else
|
|
begin
|
|
rtc <= rtc + 1'b1;
|
|
end
|
|
end
|
|
|
|
wire [7:0] keys [7:0];
|
|
wire [7:0] key_data = keys[addr[3:0]];
|
|
|
|
keyboard keyboard
|
|
(
|
|
.clk_sys(clk_sys),
|
|
.rst_n(rst_n),
|
|
.ps2_key(ps2_key),
|
|
.joystick_0(joystick_0),
|
|
.joystick_1(joystick_1),
|
|
.keys(keys)
|
|
);
|
|
|
|
|
|
reg [7:0] io_wr_color_a_tape;
|
|
reg [7:0] io_wr_color_b_snd;
|
|
|
|
reg [7:0] io_wr_sound_a [3:0];
|
|
reg [7:0] io_wr_sound_b [3:0];
|
|
|
|
reg [7:0] io_wr_misc;
|
|
|
|
always@(posedge io_1000_w_n or negedge rst_n)
|
|
begin
|
|
if (!rst_n)
|
|
begin
|
|
io_wr_color_a_tape <= 8'b0;
|
|
end
|
|
else
|
|
begin
|
|
io_wr_color_a_tape <= cpu_dout;
|
|
end
|
|
end
|
|
|
|
always@(posedge io_1800_w_n or negedge rst_n)
|
|
begin
|
|
if (!rst_n)
|
|
begin
|
|
io_wr_color_b_snd <= 8'b0;
|
|
end
|
|
else
|
|
begin
|
|
io_wr_color_b_snd <= cpu_dout;
|
|
end
|
|
end
|
|
|
|
always@(posedge io_2000_w_n or negedge rst_n)
|
|
begin
|
|
if (!rst_n)
|
|
begin
|
|
io_wr_sound_a[2'b00] <= 8'b0;
|
|
io_wr_sound_a[2'b01] <= 8'b0;
|
|
io_wr_sound_a[2'b10] <= 8'b0;
|
|
io_wr_sound_a[2'b11] <= 8'b0;
|
|
end
|
|
else
|
|
begin
|
|
io_wr_sound_a[addr[1:0]] <= cpu_dout;
|
|
end
|
|
end
|
|
|
|
always@(posedge io_2800_w_n or negedge rst_n)
|
|
begin
|
|
if (!rst_n)
|
|
begin
|
|
io_wr_sound_b[2'b00] <= 8'b0;
|
|
io_wr_sound_b[2'b01] <= 8'b0;
|
|
io_wr_sound_b[2'b10] <= 8'b0;
|
|
io_wr_sound_b[2'b11] <= 8'b0;
|
|
end
|
|
else
|
|
begin
|
|
io_wr_sound_b[addr[1:0]] <= cpu_dout;
|
|
end
|
|
end
|
|
|
|
always@(posedge io_3000_w_n or negedge rst_n)
|
|
begin
|
|
if (!rst_n)
|
|
begin
|
|
io_wr_misc <= 8'b0;
|
|
end
|
|
else
|
|
begin
|
|
io_wr_misc <= cpu_dout;
|
|
end
|
|
end
|
|
|
|
|
|
/////////////////// Video ///////////////////
|
|
|
|
|
|
//// Test generator start
|
|
|
|
reg [7:0] vidtest_x;
|
|
reg [7:0] vidtest_y;
|
|
wire [6:0] vidtest_scanline = vid_a[11:5];
|
|
|
|
always@(posedge vid_ltc or negedge hblank_n)
|
|
begin
|
|
if (!hblank_n)
|
|
vidtest_x <= 8'b0;
|
|
else
|
|
vidtest_x <= vidtest_x + 1'b1;
|
|
end
|
|
|
|
always@(posedge hsync_n or negedge vblank_n)
|
|
begin
|
|
if (!vblank_n)
|
|
vidtest_y <= 8'b0;
|
|
else
|
|
vidtest_y <= vidtest_y + 1'b1;
|
|
end
|
|
|
|
//// Test generator end
|
|
|
|
|
|
reg [7:0] pix_byte;
|
|
wire pix_en = vid_sel & vid_ltc & ~(ce_n | pce);
|
|
|
|
always@(posedge pix_en or negedge rst_n)
|
|
begin
|
|
if (!rst_n)
|
|
begin
|
|
pix_byte <= 8'b0;
|
|
end
|
|
else
|
|
begin
|
|
pix_byte <= vid_out;
|
|
end
|
|
end
|
|
|
|
reg [3:0] pix_nib;
|
|
|
|
always@(posedge vid_sel_n or negedge rst_n)
|
|
begin
|
|
if (!rst_n)
|
|
begin
|
|
pix_nib <= 4'b0;
|
|
end
|
|
else
|
|
begin
|
|
pix_nib <= pix_byte[7:4];
|
|
end
|
|
end
|
|
|
|
wire [1:0] pix = vid_sel ? (pix_a ? pix_nib[3:2] : pix_nib[1:0]) : (pix_a ? pix_byte[3:2] : pix_byte[1:0]);
|
|
|
|
wire [2:0] cr [3:0];
|
|
|
|
assign cr[2'b00] = io_wr_color_a_tape[2:0];
|
|
assign cr[2'b01] = io_wr_color_b_snd[2:0];
|
|
assign cr[2'b10] = io_wr_color_a_tape[5:3];
|
|
assign cr[2'b11] = io_wr_color_b_snd[5:3];
|
|
|
|
wire [2:0] color = cr[pix];
|
|
wire color_intensity = (pix == 2'b10) ? io_wr_color_b_snd[6] : 1'b0;
|
|
|
|
wire test_pattern = test_sw;
|
|
|
|
always@(posedge vid_ltc or negedge rst_n)
|
|
begin
|
|
if (!rst_n)
|
|
begin
|
|
R <= 8'b0;
|
|
G <= 8'b0;
|
|
B <= 8'b0;
|
|
end
|
|
else
|
|
begin
|
|
if (cmp_blank)
|
|
begin
|
|
R <= 8'b0;
|
|
G <= 8'b0;
|
|
B <= 8'b0;
|
|
end
|
|
else if (test_pattern & (vidtest_x === 8'd0))
|
|
begin
|
|
R <= 8'h00; //darkgreen
|
|
G <= 8'h64;
|
|
B <= 8'h00;
|
|
end
|
|
else if (test_pattern & (vidtest_x === 8'd110))
|
|
begin
|
|
R <= 8'h7c; //lawngreen
|
|
G <= 8'hfc;
|
|
B <= 8'h00;
|
|
end
|
|
else if (test_pattern & (vidtest_scanline === 7'd0))
|
|
begin
|
|
R <= 8'h8A; //blueviolet
|
|
G <= 8'h2B;
|
|
B <= 8'hE2;
|
|
end
|
|
else if (test_pattern & (vidtest_scanline === 7'd75))
|
|
begin
|
|
R <= 8'h1e; //dodgerblue
|
|
G <= 8'h90;
|
|
B <= 8'hff;
|
|
end
|
|
else
|
|
begin
|
|
if (color_intensity)
|
|
begin
|
|
if (test_pattern)
|
|
begin
|
|
R <= 8'h7c; //lawngreen
|
|
G <= 8'hfc;
|
|
B <= 8'h00;
|
|
end
|
|
else
|
|
begin
|
|
R <= {1'b0, {7{color[0]}}};
|
|
G <= {1'b0, {7{color[1]}}};
|
|
B <= {1'b0, {7{color[2]}}};
|
|
end
|
|
end
|
|
else
|
|
begin
|
|
R <= {8{color[0]}};
|
|
G <= {8{color[1]}};
|
|
B <= {8{color[2]}};
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
//// Tape Loading
|
|
|
|
wire [15:0] tape_addr;
|
|
wire [7:0] tape_data;
|
|
reg [15:0] tape_end;
|
|
|
|
dpram #(.ADDRWIDTH(15)) tape// 16 reduced, lack of BRAM
|
|
(
|
|
.clock(clk_cas),
|
|
.address_a(ioctl_addr),
|
|
.data_a(ioctl_data),
|
|
.wren_a(ioctl_wr),
|
|
|
|
.address_b(tape_addr),
|
|
.q_b(tape_data)
|
|
);
|
|
|
|
|
|
always@(posedge clk_cas or negedge rst_n)
|
|
begin
|
|
if (!rst_n)
|
|
begin
|
|
tape_end <= 16'b0;
|
|
end
|
|
else
|
|
begin
|
|
if (ioctl_download) tape_end <= ioctl_addr;
|
|
end
|
|
end
|
|
|
|
wire tape_flux;
|
|
|
|
cassette cassette(
|
|
.clk(clk_sys),
|
|
.rst_n(rst_n),
|
|
.play(tape_play),
|
|
.rewind(tape_rewind),
|
|
.playing(tape_playing),
|
|
.motor(io_wr_color_a_tape[6]),
|
|
|
|
.tape_addr(tape_addr),
|
|
.tape_data(tape_data),
|
|
.tape_end(tape_end),
|
|
|
|
.flux(tape_flux),
|
|
.audio(audio)
|
|
);
|
|
|
|
|
|
|
|
endmodule
|