mirror of
https://github.com/MiSTer-devel/MultiComp_MiSTer.git
synced 2026-04-19 03:04:38 +00:00
increase read buffer of UART from 16 to 64 bytes allow selection of UART baud rate allow selection of sd controller or image controller update readme.md with more explanation of above and more detail on MultiComp use specifically for CP/M
558 lines
14 KiB
Systemverilog
558 lines
14 KiB
Systemverilog
//============================================================================
|
||
// Grant’s multi computer
|
||
//
|
||
// Port to MiSTer.
|
||
//
|
||
// Based on Grant’s multi computer
|
||
// http://searle.hostei.com/grant/
|
||
// http://searle.hostei.com/grant/Multicomp/index.html
|
||
// and WiSo's collector blog (MiST port)
|
||
// https://ws0.org/building-your-own-custom-computer-with-the-mist-fpga-board-part-1/
|
||
// https://ws0.org/building-your-own-custom-computer-with-the-mist-fpga-board-part-2/
|
||
//
|
||
// 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 [45: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.
|
||
output [7:0] VIDEO_ARX,
|
||
output [7: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,
|
||
|
||
/*
|
||
// Use framebuffer from DDRAM (USE_FB=1 in qsf)
|
||
// 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 16 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,
|
||
|
||
// 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,
|
||
*/
|
||
|
||
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 SECONDARY SDCARD
|
||
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,
|
||
|
||
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 {SD_SCK, SD_MOSI, SD_CS} = 'Z;
|
||
assign {SDRAM_DQ, SDRAM_A, SDRAM_BA, SDRAM_CLK, SDRAM_CKE, SDRAM_DQML, SDRAM_DQMH, SDRAM_nWE, SDRAM_nCAS, SDRAM_nRAS, SDRAM_nCS} = 'Z;
|
||
assign {DDRAM_CLK, DDRAM_BURSTCNT, DDRAM_ADDR, DDRAM_DIN, DDRAM_BE, DDRAM_RD, DDRAM_WE} = 0;
|
||
|
||
assign UART_RTS = UART_CTS;
|
||
assign UART_DTR = UART_DSR;
|
||
|
||
assign LED_POWER = 0;
|
||
assign BUTTONS = 0;
|
||
|
||
assign VIDEO_ARX = 4;
|
||
assign VIDEO_ARY = 3;
|
||
assign VGA_SL = 0;
|
||
assign VGA_F1 = 0;
|
||
|
||
assign AUDIO_S = 0;
|
||
assign AUDIO_L = 0;
|
||
assign AUDIO_R = 0;
|
||
assign AUDIO_MIX = 0;
|
||
|
||
// enable input on USER_IO[3] for ch376s MISO
|
||
assign USER_OUT[3] = 1'b1;
|
||
|
||
// enable input on USER_IO[0] for UART i.e. USER_IN[0] rx
|
||
assign USER_OUT[0] = 1'b1;
|
||
|
||
`include "build_id.v"
|
||
localparam CONF_STR = {
|
||
"MultiComp;;",
|
||
"S,IMG;",
|
||
"OF,Reset after Mount,No,Yes;", // 15
|
||
"-;",
|
||
"O78,CPU-ROM,Z80-CP/M,Z80-BASIC,6502-Basic,6809-Basic;", // 7,8
|
||
"-;",
|
||
"O9B,Baud Rate tty,115200,38400,19200,9600,4800,2400;", // 9,10,11
|
||
"OC,Serial Port,UART,USER_IO;", // 12 Add serial port selection
|
||
"OD,Storage Controller,SD Controller,Image Controller;", // 13 Select storage controller
|
||
"-;",
|
||
"RE,Reset;", // 14
|
||
"V,v",`BUILD_DATE
|
||
};
|
||
|
||
////////////////// HPS I/O ///////////////////
|
||
wire [1:0] buttons;
|
||
wire [31:0] status;
|
||
|
||
wire PS2_CLK;
|
||
wire PS2_DAT;
|
||
|
||
wire forced_scandoubler;
|
||
|
||
wire [31:0] sd_lba;
|
||
wire sd_rd;
|
||
wire sd_wr;
|
||
wire sd_ack;
|
||
wire [8:0] sd_buff_addr;
|
||
wire [7:0] sd_buff_dout;
|
||
wire [7:0] sd_buff_din;
|
||
wire sd_buff_wr;
|
||
wire sd_ack_conf;
|
||
wire img_mounted;
|
||
wire img_readonly;
|
||
wire [63:0] img_size;
|
||
|
||
hps_io #(
|
||
.STRLEN($size(CONF_STR)>>3),
|
||
.PS2DIV (2000)
|
||
) hps_io
|
||
(
|
||
.clk_sys(CLK_50M),
|
||
.HPS_BUS(HPS_BUS),
|
||
|
||
.conf_str(CONF_STR),
|
||
|
||
.buttons(buttons),
|
||
.status(status),
|
||
.forced_scandoubler(forced_scandoubler),
|
||
|
||
.ps2_kbd_clk_out(PS2_CLK),
|
||
.ps2_kbd_data_out(PS2_DAT),
|
||
|
||
.sd_lba(sd_lba),
|
||
.sd_rd(sd_rd),
|
||
.sd_wr(sd_wr),
|
||
.sd_ack(sd_ack),
|
||
.sd_ack_conf(sd_ack_conf),
|
||
.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_readonly(img_readonly),
|
||
.img_size(img_size),
|
||
|
||
.uart_mode(16'b000_11111_000_11111)
|
||
);
|
||
|
||
/////////////////////// CLOCKS ///////////////////////////////
|
||
wire clk_sys, locked;
|
||
|
||
pll pll
|
||
(
|
||
.refclk(CLK_50M),
|
||
.rst(0),
|
||
.outclk_0(clk_sys),
|
||
.locked(locked)
|
||
);
|
||
|
||
///////////////// RESET /////////////////////////
|
||
|
||
wire reset = RESET | status[0] | buttons[1] | status[14] | (status[15] && img_mounted);
|
||
|
||
///////////////// SDCARD ////////////////////////
|
||
|
||
// SD card interface signal declarations
|
||
// _sd suffix for SD controller signals
|
||
// _img suffix for image controller signals
|
||
// _mux suffix for multiplexed signals
|
||
wire sdclk_sd, sdmosi_sd, sdcs_sd; // SD controller outputs
|
||
wire sdclk_img, sdmosi_img, sdcs_img; // Image controller outputs
|
||
wire driveLED_sd, driveLED_img; // Drive activity indicators
|
||
|
||
// Multiplexed signals that route to physical SD interface
|
||
wire sdclk_mux, sdmosi_mux, sdcs_mux; // Multiplexed control signals
|
||
wire sdmiso_mux; // Multiplexed data input
|
||
wire driveLED_mux; // Multiplexed activity indicator
|
||
|
||
// Controller selection - determines which controller drives SD interface
|
||
wire sd_ctrl_sel = status[14]; // 0=SD controller, 1=image controller
|
||
|
||
// Multiplex between SD and image controller outputs
|
||
assign sdclk_mux = sd_ctrl_sel ? sdclk_img : sdclk_sd; // Clock output
|
||
assign sdmosi_mux = sd_ctrl_sel ? sdmosi_img : sdmosi_sd; // Data output to SD
|
||
assign sdcs_mux = sd_ctrl_sel ? sdcs_img : sdcs_sd; // Chip select
|
||
assign driveLED_mux = sd_ctrl_sel ? driveLED_img : driveLED_sd; // Activity LED
|
||
|
||
// MISO input routing - selects between SD card and virtual SD based on vsd_sel
|
||
assign sdmiso_mux = vsd_sel ? vsdmiso : SD_MISO;
|
||
|
||
// Virtual SD interface enable
|
||
reg vsd_sel = 0;
|
||
always @(posedge clk_sys) if(img_mounted) vsd_sel <= |img_size;
|
||
|
||
// Map multiplexed signals to physical SD interface
|
||
// High-Z when virtual SD not selected
|
||
// old code
|
||
//assign SD_SCK = vsd_sel ? sdclk_mux : 1'bZ; // SD clock
|
||
//assign SD_MOSI = vsd_sel ? sdmosi_mux : 1'bZ; // SD data out
|
||
//assign SD_CS = vsd_sel ? sdcs_mux : 1'bZ; // SD chip select
|
||
|
||
// Keep physical SD enabled when using SD controller
|
||
assign SD_SCK = (vsd_sel || !sd_ctrl_sel) ? sdclk_mux : 1'bZ;
|
||
assign SD_MOSI = (vsd_sel || !sd_ctrl_sel) ? sdmosi_mux : 1'bZ;
|
||
assign SD_CS = (vsd_sel || !sd_ctrl_sel) ? sdcs_mux : 1'bZ;
|
||
|
||
// Virtual SD card implementation
|
||
sd_card sd_card
|
||
(
|
||
.*,
|
||
.clk_spi(clk_sys),
|
||
.sdhc(1),
|
||
.sck(sdclk_mux),
|
||
.ss(sdcs_mux | ~vsd_sel),
|
||
.mosi(sdmosi_mux),
|
||
.miso(vsdmiso)
|
||
);
|
||
|
||
// Drive activity detection
|
||
reg sd_act;
|
||
always @(posedge clk_sys) begin
|
||
reg old_mosi, old_miso;
|
||
integer timeout = 0;
|
||
|
||
old_mosi <= sdmosi_mux;
|
||
old_miso <= sdmiso_mux;
|
||
|
||
sd_act <= 0;
|
||
if(timeout < 1000000) begin
|
||
timeout <= timeout + 1;
|
||
sd_act <= 1;
|
||
end
|
||
|
||
if((old_mosi ^ sdmosi_mux) || (old_miso ^ sdmiso_mux)) timeout <= 0;
|
||
end
|
||
|
||
// Map drive LED to system LED output
|
||
assign LED_USER = vsd_sel & sd_act;
|
||
assign LED_DISK = {2{~driveLED_mux}};
|
||
|
||
|
||
///////////////////////////////////////////////////
|
||
|
||
assign CLK_VIDEO = clk_sys;
|
||
|
||
typedef enum {cpuZ80CPM='b00, cpuZ80Basic='b01, cpu6502Basic='b10, cpu6809Basic='b11} cpu_type_enum;
|
||
wire [1:0] cpu_type = status[8:7];
|
||
|
||
typedef enum {baud115200='b000, baud38400='b001, baud19200='b010, baud9600='b011, baud4800='b100, baud2400='b101} baud_rate_enum;
|
||
wire [2:0] baud_rate = status[11:9];
|
||
|
||
wire hblank, vblank;
|
||
wire hs, vs;
|
||
wire [1:0] r,g,b;
|
||
|
||
wire [3:0] _hblank, _vblank;
|
||
wire [3:0] _hs, _vs;
|
||
wire [1:0] _r[3:0], _g[3:0], _b[3:0];
|
||
wire [3:0] _driveLED;
|
||
wire [3:0] _CE_PIXEL;
|
||
wire [3:0] _SD_CS;
|
||
wire [3:0] _SD_MOSI;
|
||
wire [3:0] _SD_SCK;
|
||
wire [3:0] _txd[3:0];
|
||
|
||
wire serial_rx = (status[12] ? USER_IN[0] : UART_RXD);
|
||
wire serial_tx;
|
||
assign UART_TXD = status[12] ? 1'b1 : serial_tx;
|
||
assign USER_OUT[1] = status[12] ? serial_tx : 1'b1;
|
||
|
||
always_comb
|
||
begin
|
||
hblank <= _hblank[cpu_type];
|
||
vblank <= _vblank[cpu_type];
|
||
hs <= _hs[cpu_type];
|
||
vs <= _vs[cpu_type];
|
||
r <= _r[cpu_type][1:0];
|
||
g <= _g[cpu_type][1:0];
|
||
b <= _b[cpu_type][1:0];
|
||
CE_PIXEL <= _CE_PIXEL[cpu_type];
|
||
serial_tx <= _txd[cpu_type];
|
||
end
|
||
|
||
// Add baud rate selection logic - add this before the microcomputer instances:
|
||
reg [15:0] baud_increment;
|
||
always @(*) begin
|
||
case(baud_rate)
|
||
baud115200: baud_increment = 16'd2416; // 115200
|
||
baud38400: baud_increment = 16'd805; // 38400
|
||
baud19200: baud_increment = 16'd403; // 19200
|
||
baud9600: baud_increment = 16'd201; // 9600
|
||
baud4800: baud_increment = 16'd101; // 4800
|
||
baud2400: baud_increment = 16'd50; // 2400
|
||
default: baud_increment = 16'd2416; // Default to 115200
|
||
endcase
|
||
end
|
||
|
||
/*
|
||
reg [6:0] test;
|
||
reg [4:0] mycnt;
|
||
initial test = 0;
|
||
initial mycnt = 0;
|
||
always @(posedge clk_sys) begin
|
||
if (mycnt>25) begin
|
||
test <= test + 1'b1;
|
||
mycnt <= 0;
|
||
end
|
||
else begin
|
||
mycnt <= mycnt + 1'b1;
|
||
end
|
||
|
||
USER_OUT[0] <= test[0];
|
||
USER_OUT[1] <= test[1];
|
||
USER_OUT[2] <= test[2];
|
||
USER_OUT[3] <= test[3];
|
||
USER_OUT[4] <= test[4];
|
||
USER_OUT[5] <= test[5];
|
||
USER_OUT[6] <= test[6];
|
||
end
|
||
*/
|
||
MicrocomputerZ80CPM MicrocomputerZ80CPM
|
||
(
|
||
.N_RESET(~reset & cpu_type == cpuZ80CPM),
|
||
.clk(cpu_type == cpuZ80CPM ? clk_sys : 0),
|
||
.baud_increment(baud_increment),
|
||
.R(_r[0][1:0]),
|
||
.G(_g[0][1:0]),
|
||
.B(_b[0][1:0]),
|
||
.HS(_hs[0]),
|
||
.VS(_vs[0]),
|
||
.hBlank(_hblank[0]),
|
||
.vBlank(_vblank[0]),
|
||
.cepix(_CE_PIXEL[0]),
|
||
.ps2Clk(PS2_CLK),
|
||
.ps2Data(PS2_DAT),
|
||
.sdCS(sdcs_sd), // SD controller chip select output
|
||
.sdMOSI(sdmosi_sd), // SD controller data output
|
||
.sdMISO(sdmiso_mux), // Multiplexed SD data input
|
||
.sdSCLK(sdclk_sd), // SD controller clock output
|
||
.driveLED(driveLED_sd),
|
||
.sd_ctrl_sel(sd_ctrl_sel),
|
||
.rxd1(serial_rx),
|
||
.txd1(_txd[0]),
|
||
// CH376s via USERIO
|
||
.usbSCLK (USER_OUT[2]),
|
||
.usbMISO (USER_IN[3]),
|
||
.usbMOSI (USER_OUT[4]),
|
||
.usbCS (USER_OUT[5])
|
||
);
|
||
|
||
MicrocomputerZ80Basic MicrocomputerZ80Basic
|
||
(
|
||
.N_RESET(~reset & cpu_type == cpuZ80Basic),
|
||
.clk(cpu_type == cpuZ80Basic ? clk_sys : 0),
|
||
.baud_increment(baud_increment),
|
||
.R(_r[1][1:0]),
|
||
.G(_g[1][1:0]),
|
||
.B(_b[1][1:0]),
|
||
.HS(_hs[1]),
|
||
.VS(_vs[1]),
|
||
.hBlank(_hblank[1]),
|
||
.vBlank(_vblank[1]),
|
||
.cepix(_CE_PIXEL[1]),
|
||
.ps2Clk(PS2_CLK),
|
||
.ps2Data(PS2_DAT),
|
||
.sdCS(_SD_CS[1]),
|
||
.sdMOSI(_SD_MOSI[1]),
|
||
.sdMISO(sdmiso),
|
||
.sdSCLK(_SD_SCK[1]),
|
||
.driveLED(_driveLED[1]),
|
||
.rxd1 (serial_rx),
|
||
.txd1 (_txd[1])
|
||
);
|
||
|
||
Microcomputer6502Basic Microcomputer6502Basic
|
||
(
|
||
.N_RESET(~reset & cpu_type == cpu6502Basic),
|
||
.clk(cpu_type == cpu6502Basic ? clk_sys : 0),
|
||
.baud_increment(baud_increment),
|
||
.R(_r[2][1:0]),
|
||
.G(_g[2][1:0]),
|
||
.B(_b[2][1:0]),
|
||
.HS(_hs[2]),
|
||
.VS(_vs[2]),
|
||
.hBlank(_hblank[2]),
|
||
.vBlank(_vblank[2]),
|
||
.cepix(_CE_PIXEL[2]),
|
||
.ps2Clk(PS2_CLK),
|
||
.ps2Data(PS2_DAT),
|
||
.sdCS(_SD_CS[2]),
|
||
.sdMOSI(_SD_MOSI[2]),
|
||
.sdMISO(sdmiso),
|
||
.sdSCLK(_SD_SCK[2]),
|
||
.driveLED(_driveLED[2]),
|
||
.rxd1 (serial_rx),
|
||
.txd1 (_txd[2])
|
||
);
|
||
|
||
//Reset is not working (even on the original Grant's 6809)
|
||
Microcomputer6809Basic Microcomputer6809Basic
|
||
(
|
||
.N_RESET(~reset & cpu_type == cpu6809Basic),
|
||
.clk(cpu_type == cpu6809Basic ? clk_sys : 0),
|
||
.baud_increment(baud_increment),
|
||
.R(_r[3][1:0]),
|
||
.G(_g[3][1:0]),
|
||
.B(_b[3][1:0]),
|
||
.HS(_hs[3]),
|
||
.VS(_vs[3]),
|
||
.hBlank(_hblank[3]),
|
||
.vBlank(_vblank[3]),
|
||
.cepix(_CE_PIXEL[3]),
|
||
.ps2Clk(PS2_CLK),
|
||
.ps2Data(PS2_DAT),
|
||
.sdCS(_SD_CS[3]),
|
||
.sdMOSI(_SD_MOSI[3]),
|
||
.sdMISO(sdmiso),
|
||
.sdSCLK(_SD_SCK[3]),
|
||
.driveLED(_driveLED[3]),
|
||
.rxd1 (serial_rx),
|
||
.txd1 (_txd[3])
|
||
);
|
||
|
||
video_cleaner video_cleaner
|
||
(
|
||
.clk_vid(CLK_VIDEO),
|
||
.ce_pix(CE_PIXEL),
|
||
|
||
.R({4{r}}),
|
||
.G({4{g}}),
|
||
.B({4{b}}),
|
||
.HSync(hs),
|
||
.VSync(vs),
|
||
.HBlank(hblank),
|
||
.VBlank(vblank),
|
||
|
||
.VGA_R(VGA_R),
|
||
.VGA_G(VGA_G),
|
||
.VGA_B(VGA_B),
|
||
.VGA_VS(VGA_VS),
|
||
.VGA_HS(VGA_HS),
|
||
.VGA_DE(VGA_DE)
|
||
);
|
||
|
||
|
||
endmodule
|