├── .gitattributes ├── .gitignore ├── AHB2BRAM └── AHB2BRAM.v ├── AHB_GPIO ├── cmsdk_ahb_gpio.v ├── cmsdk_ahb_to_iop.v └── cmsdk_iop_gpio.v ├── AHB_UART ├── AHBUART.v ├── baudgen.v ├── fifo.v ├── uart_rx.v └── uart_tx.v ├── AXI_DMA_RD_1.0 ├── bd │ └── bd.tcl ├── component.xml ├── example_designs │ ├── bfm_design │ │ ├── AXI_DMA_RD_v1_0_tb.v │ │ └── design.tcl │ └── debug_hw_design │ │ ├── AXI_DMA_RD_v1_0_hw_test.tcl │ │ └── design.tcl ├── hdl │ ├── AXI_DMA_RD_v1_0.v │ ├── AXI_DMA_RD_v1_0_M00_AXI.v │ └── VGA_TIMING.v ├── src │ └── frame_fifo_64x4096 │ │ ├── blk_mem_gen_v8_3_1 │ │ └── hdl │ │ │ ├── blk_mem_gen_v8_3.vhd │ │ │ └── blk_mem_gen_v8_3_vhsyn_rfs.vhd │ │ ├── doc │ │ └── fifo_generator_v13_0_changelog.txt │ │ ├── fifo_generator_v13_0_1 │ │ ├── hdl │ │ │ ├── fifo_generator_v13_0.vhd │ │ │ ├── fifo_generator_v13_0_rfs.vhd │ │ │ └── fifo_generator_v13_0_vhsyn_rfs.vhd │ │ └── simulation │ │ │ └── fifo_generator_vhdl_beh.vhd │ │ ├── frame_fifo_64x4096.veo │ │ ├── frame_fifo_64x4096.vho │ │ ├── frame_fifo_64x4096.xci │ │ ├── frame_fifo_64x4096.xml │ │ ├── frame_fifo_64x4096 │ │ ├── frame_fifo_64x4096.xdc │ │ └── frame_fifo_64x4096_clocks.xdc │ │ ├── sim │ │ └── frame_fifo_64x4096.vhd │ │ └── synth │ │ └── frame_fifo_64x4096.vhd ├── xgui │ └── AXI_DMA_RD_v1_0.tcl └── xilinx.com_user_AXI_DMA_RD_1.0.zip ├── AXI_DMA_WR_1.0 ├── bd │ └── bd.tcl ├── component.xml ├── example_designs │ ├── bfm_design │ │ ├── AXI_DMA_WR_v1_0_tb.v │ │ └── design.tcl │ └── debug_hw_design │ │ ├── AXI_DMA_WR_v1_0_hw_test.tcl │ │ └── design.tcl ├── hdl │ ├── AXI_DMA_WR_v1_0.v │ └── AXI_DMA_WR_v1_0_M00_AXI.v ├── src │ ├── fifo_generator_0 │ │ ├── blk_mem_gen_v8_3_1 │ │ │ └── hdl │ │ │ │ ├── blk_mem_gen_v8_3.vhd │ │ │ │ └── blk_mem_gen_v8_3_vhsyn_rfs.vhd │ │ ├── doc │ │ │ └── fifo_generator_v13_0_changelog.txt │ │ ├── fifo_generator_0.veo │ │ ├── fifo_generator_0.vho │ │ ├── fifo_generator_0.xci │ │ ├── fifo_generator_0.xml │ │ ├── fifo_generator_0 │ │ │ ├── fifo_generator_0.xdc │ │ │ └── fifo_generator_0_clocks.xdc │ │ ├── fifo_generator_v13_0_1 │ │ │ ├── hdl │ │ │ │ ├── fifo_generator_v13_0.vhd │ │ │ │ ├── fifo_generator_v13_0_rfs.vhd │ │ │ │ └── fifo_generator_v13_0_vhsyn_rfs.vhd │ │ │ └── simulation │ │ │ │ └── fifo_generator_vhdl_beh.vhd │ │ ├── sim │ │ │ └── fifo_generator_0.vhd │ │ └── synth │ │ │ └── fifo_generator_0.vhd │ └── frame_buf_32x8192 │ │ ├── blk_mem_gen_v8_3_1 │ │ └── hdl │ │ │ ├── blk_mem_gen_v8_3.vhd │ │ │ └── blk_mem_gen_v8_3_vhsyn_rfs.vhd │ │ ├── doc │ │ └── fifo_generator_v13_0_changelog.txt │ │ ├── fifo_generator_v13_0_1 │ │ ├── hdl │ │ │ ├── fifo_generator_v13_0.vhd │ │ │ ├── fifo_generator_v13_0_rfs.vhd │ │ │ └── fifo_generator_v13_0_vhsyn_rfs.vhd │ │ └── simulation │ │ │ └── fifo_generator_vhdl_beh.vhd │ │ ├── frame_buf_32x8192.veo │ │ ├── frame_buf_32x8192.vho │ │ ├── frame_buf_32x8192.xci │ │ ├── frame_buf_32x8192.xml │ │ ├── frame_buf_32x8192 │ │ ├── frame_buf_32x8192.xdc │ │ └── frame_buf_32x8192_clocks.xdc │ │ ├── sim │ │ └── frame_buf_32x8192.vhd │ │ └── synth │ │ └── frame_buf_32x8192.vhd ├── xgui │ └── AXI_DMA_WR_v1_0.tcl └── xilinx.com_user_AXI_DMA_WR_1.0.zip ├── AXI_lite_test_hdl ├── AXI_Test_M.v ├── AXI_Test_M_v1_0_M00_AXI.v ├── AXI_Test_S.v ├── AXI_Test_S_v1_0_S00_AXI.v ├── AXI_Test_top.v └── AXI_Test_top_testbench.v ├── BMP_FAT ├── bmp_img.c └── bmp_img.h ├── BRAM ├── BRAM.v ├── BRAM_inst.v └── initial_data.hex ├── DE1_SOC_SEG_HEX ├── DE1_SOC.sdc ├── DE1_SOC_HEX.qpf ├── DE1_SOC_HEX.qsf ├── DE1_SOC_HEX.tcl ├── README.md ├── hdl │ ├── DE1_SOC_HEX.v │ └── SEG_HEX.v ├── output_files │ └── DE1_SOC_HEX.sof └── 文件列表.txt ├── Edge_Detect ├── Edge_Detect.vt └── sim │ └── Edge_Detect.v ├── Fudan_uart ├── uart_rx.v ├── uart_top.v ├── uart_top_inst.v └── uart_tx.v ├── Key_Module ├── Key_Module.v ├── key_Module_inst.v └── 说明.txt ├── README.md ├── RGB_Gary_Binary └── RGB_Gary_Binary.v ├── SEG_display ├── seg_display.v ├── seg_test.v ├── 数码管原理图.bmp └── 说明.txt ├── UART_Module ├── UART_TOP.v ├── baudgen.v ├── fifo.v ├── uart_rx.v └── uart_tx.v ├── aq_axi_master ├── .gitignore ├── aq_axi_master.v ├── axi_slave_v1_0_S00_AXI.v ├── mem_test.v └── top.v ├── async_fifo-master ├── .gitignore ├── LICENSE ├── README.md ├── async_fifo.core ├── doc │ ├── architecture.rst │ ├── release.rst │ ├── specification.rst │ └── testplan.rst ├── sim │ └── test │ │ ├── Makefile │ │ ├── async_fifo_unit_test.sv │ │ ├── files.f │ │ └── wave.gtkw └── src │ ├── .gitignore │ ├── async_fifo.qpf │ ├── async_fifo.qsf │ └── vlog │ ├── async_bidir_fifo.v │ ├── async_bidir_ramif_fifo.v │ ├── async_fifo.v │ ├── fifo_2mem.v │ ├── fifomem_dp.v │ ├── rptr_empty.v │ ├── sync_ptr.v │ ├── sync_r2w.v │ ├── sync_w2r.v │ └── wptr_full.v ├── axi_full_sim ├── .gitignore ├── axi_full_top.v ├── axi_master_1.0 │ ├── bd │ │ └── bd.tcl │ ├── example_designs │ │ ├── bfm_design │ │ │ ├── design.tcl │ │ │ └── myip_v1_0_tb.sv │ │ └── debug_hw_design │ │ │ ├── design.tcl │ │ │ └── myip_v1_0_hw_test.tcl │ ├── hdl │ │ ├── axi_master_v1_0.v │ │ └── axi_master_v1_0_M00_AXI.v │ └── xgui │ │ └── myip_v1_0.tcl ├── axi_master_v1_0_M00_AXI.v ├── axi_slave_1.0 │ ├── bd │ │ └── bd.tcl │ ├── drivers │ │ └── axi_slave_v1_0 │ │ │ ├── data │ │ │ ├── axi_slave.mdd │ │ │ └── axi_slave.tcl │ │ │ └── src │ │ │ ├── Makefile │ │ │ ├── axi_slave.c │ │ │ ├── axi_slave.h │ │ │ └── axi_slave_selftest.c │ ├── example_designs │ │ ├── bfm_design │ │ │ ├── axi_slave_v1_0_tb.sv │ │ │ └── design.tcl │ │ └── debug_hw_design │ │ │ ├── axi_slave_v1_0_hw_test.tcl │ │ │ └── design.tcl │ ├── hdl │ │ ├── axi_slave_v1_0.v │ │ └── axi_slave_v1_0_S00_AXI.v │ └── xgui │ │ └── axi_slave_v1_0.tcl ├── axi_slave_v1_0_S00_AXI.v └── tb_axi_full_top.v ├── fifo └── fifo.v ├── hdmi_tx_1.0 ├── hdl │ ├── DVITransmitter.vhd │ ├── SerializerN_1.vhd │ ├── TMDSEncoder.vhd │ └── hdmi_tx.vhd ├── hdmi_tx_0 │ └── hdmi_tx_0.xci └── xgui │ ├── AXI_DisplayController_v1_0_v1_0.tcl │ └── hdmi_tx_v1_0.tcl ├── i2c_master ├── .gitignore ├── i2c_config.v ├── i2c_master │ ├── i2c_master_bit_ctrl.v │ ├── i2c_master_byte_ctrl.v │ ├── i2c_master_defines.v │ ├── i2c_master_top.v │ └── timescale.v ├── lut_ov5640_rgb565_480_272.v ├── ov5640_config_top.qpf ├── ov5640_config_top.qsf └── ov5640_config_top.v ├── pwm └── PWM_ip.v ├── pwm_motor ├── PWM_ip.v ├── Segled_Module.v ├── pwm_control.v ├── sim │ └── top.vt ├── speed_display.v ├── top.v └── 工程说明.docx ├── ram_2p └── ram_2p.v ├── sdram_core └── sdram_core.v ├── uart_module ├── uart_inst.v └── urat_test │ ├── data_16bit_to_8bit.v │ ├── data_to_8bit.v │ ├── top.v │ ├── uart_test_data.v │ └── 说明.txt ├── vivado-library-master.zip ├── wave_data ├── sin_1024_14bit_signd.hex ├── sin_16bit_1024_signed.hex ├── sin_16bit_32768_signed.hex └── sin_8bit_1024_unsigne.hex └── white_balance └── white_balance.v /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/.gitignore -------------------------------------------------------------------------------- /AHB2BRAM/AHB2BRAM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AHB2BRAM/AHB2BRAM.v -------------------------------------------------------------------------------- /AHB_GPIO/cmsdk_ahb_gpio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AHB_GPIO/cmsdk_ahb_gpio.v -------------------------------------------------------------------------------- /AHB_GPIO/cmsdk_ahb_to_iop.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AHB_GPIO/cmsdk_ahb_to_iop.v -------------------------------------------------------------------------------- /AHB_GPIO/cmsdk_iop_gpio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AHB_GPIO/cmsdk_iop_gpio.v -------------------------------------------------------------------------------- /AHB_UART/AHBUART.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AHB_UART/AHBUART.v -------------------------------------------------------------------------------- /AHB_UART/baudgen.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AHB_UART/baudgen.v -------------------------------------------------------------------------------- /AHB_UART/fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AHB_UART/fifo.v -------------------------------------------------------------------------------- /AHB_UART/uart_rx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AHB_UART/uart_rx.v -------------------------------------------------------------------------------- /AHB_UART/uart_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AHB_UART/uart_tx.v -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/component.xml -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/example_designs/bfm_design/AXI_DMA_RD_v1_0_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/example_designs/bfm_design/AXI_DMA_RD_v1_0_tb.v -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/example_designs/debug_hw_design/AXI_DMA_RD_v1_0_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/example_designs/debug_hw_design/AXI_DMA_RD_v1_0_hw_test.tcl -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/hdl/AXI_DMA_RD_v1_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/hdl/AXI_DMA_RD_v1_0.v -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/hdl/AXI_DMA_RD_v1_0_M00_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/hdl/AXI_DMA_RD_v1_0_M00_AXI.v -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/hdl/VGA_TIMING.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/hdl/VGA_TIMING.v -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3.vhd -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3_vhsyn_rfs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3_vhsyn_rfs.vhd -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/doc/fifo_generator_v13_0_changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/doc/fifo_generator_v13_0_changelog.txt -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0.vhd -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_rfs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_rfs.vhd -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_vhsyn_rfs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_vhsyn_rfs.vhd -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/fifo_generator_v13_0_1/simulation/fifo_generator_vhdl_beh.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/fifo_generator_v13_0_1/simulation/fifo_generator_vhdl_beh.vhd -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096.veo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096.veo -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096.vho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096.vho -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096.xci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096.xci -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096.xml -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096/frame_fifo_64x4096.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096/frame_fifo_64x4096.xdc -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096/frame_fifo_64x4096_clocks.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/frame_fifo_64x4096/frame_fifo_64x4096_clocks.xdc -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/sim/frame_fifo_64x4096.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/sim/frame_fifo_64x4096.vhd -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/src/frame_fifo_64x4096/synth/frame_fifo_64x4096.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/src/frame_fifo_64x4096/synth/frame_fifo_64x4096.vhd -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/xgui/AXI_DMA_RD_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/xgui/AXI_DMA_RD_v1_0.tcl -------------------------------------------------------------------------------- /AXI_DMA_RD_1.0/xilinx.com_user_AXI_DMA_RD_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_RD_1.0/xilinx.com_user_AXI_DMA_RD_1.0.zip -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/component.xml -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/example_designs/bfm_design/AXI_DMA_WR_v1_0_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/example_designs/bfm_design/AXI_DMA_WR_v1_0_tb.v -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/example_designs/debug_hw_design/AXI_DMA_WR_v1_0_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/example_designs/debug_hw_design/AXI_DMA_WR_v1_0_hw_test.tcl -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/hdl/AXI_DMA_WR_v1_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/hdl/AXI_DMA_WR_v1_0.v -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/hdl/AXI_DMA_WR_v1_0_M00_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/hdl/AXI_DMA_WR_v1_0_M00_AXI.v -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3_vhsyn_rfs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3_vhsyn_rfs.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/doc/fifo_generator_v13_0_changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/doc/fifo_generator_v13_0_changelog.txt -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0.veo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0.veo -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0.vho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0.vho -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0.xci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0.xci -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0.xml -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0/fifo_generator_0.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0/fifo_generator_0.xdc -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0/fifo_generator_0_clocks.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_0/fifo_generator_0_clocks.xdc -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_rfs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_rfs.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_vhsyn_rfs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_vhsyn_rfs.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_v13_0_1/simulation/fifo_generator_vhdl_beh.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/fifo_generator_v13_0_1/simulation/fifo_generator_vhdl_beh.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/sim/fifo_generator_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/sim/fifo_generator_0.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/fifo_generator_0/synth/fifo_generator_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/fifo_generator_0/synth/fifo_generator_0.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3_vhsyn_rfs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/blk_mem_gen_v8_3_1/hdl/blk_mem_gen_v8_3_vhsyn_rfs.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/doc/fifo_generator_v13_0_changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/doc/fifo_generator_v13_0_changelog.txt -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_rfs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_rfs.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_vhsyn_rfs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/fifo_generator_v13_0_1/hdl/fifo_generator_v13_0_vhsyn_rfs.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/fifo_generator_v13_0_1/simulation/fifo_generator_vhdl_beh.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/fifo_generator_v13_0_1/simulation/fifo_generator_vhdl_beh.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192.veo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192.veo -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192.vho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192.vho -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192.xci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192.xci -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192.xml -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192/frame_buf_32x8192.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192/frame_buf_32x8192.xdc -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192/frame_buf_32x8192_clocks.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/frame_buf_32x8192/frame_buf_32x8192_clocks.xdc -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/sim/frame_buf_32x8192.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/sim/frame_buf_32x8192.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/src/frame_buf_32x8192/synth/frame_buf_32x8192.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/src/frame_buf_32x8192/synth/frame_buf_32x8192.vhd -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/xgui/AXI_DMA_WR_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/xgui/AXI_DMA_WR_v1_0.tcl -------------------------------------------------------------------------------- /AXI_DMA_WR_1.0/xilinx.com_user_AXI_DMA_WR_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_DMA_WR_1.0/xilinx.com_user_AXI_DMA_WR_1.0.zip -------------------------------------------------------------------------------- /AXI_lite_test_hdl/AXI_Test_M.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_lite_test_hdl/AXI_Test_M.v -------------------------------------------------------------------------------- /AXI_lite_test_hdl/AXI_Test_M_v1_0_M00_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_lite_test_hdl/AXI_Test_M_v1_0_M00_AXI.v -------------------------------------------------------------------------------- /AXI_lite_test_hdl/AXI_Test_S.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_lite_test_hdl/AXI_Test_S.v -------------------------------------------------------------------------------- /AXI_lite_test_hdl/AXI_Test_S_v1_0_S00_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_lite_test_hdl/AXI_Test_S_v1_0_S00_AXI.v -------------------------------------------------------------------------------- /AXI_lite_test_hdl/AXI_Test_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_lite_test_hdl/AXI_Test_top.v -------------------------------------------------------------------------------- /AXI_lite_test_hdl/AXI_Test_top_testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/AXI_lite_test_hdl/AXI_Test_top_testbench.v -------------------------------------------------------------------------------- /BMP_FAT/bmp_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/BMP_FAT/bmp_img.c -------------------------------------------------------------------------------- /BMP_FAT/bmp_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/BMP_FAT/bmp_img.h -------------------------------------------------------------------------------- /BRAM/BRAM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/BRAM/BRAM.v -------------------------------------------------------------------------------- /BRAM/BRAM_inst.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/BRAM/BRAM_inst.v -------------------------------------------------------------------------------- /BRAM/initial_data.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/BRAM/initial_data.hex -------------------------------------------------------------------------------- /DE1_SOC_SEG_HEX/DE1_SOC.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/DE1_SOC_SEG_HEX/DE1_SOC.sdc -------------------------------------------------------------------------------- /DE1_SOC_SEG_HEX/DE1_SOC_HEX.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/DE1_SOC_SEG_HEX/DE1_SOC_HEX.qpf -------------------------------------------------------------------------------- /DE1_SOC_SEG_HEX/DE1_SOC_HEX.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/DE1_SOC_SEG_HEX/DE1_SOC_HEX.qsf -------------------------------------------------------------------------------- /DE1_SOC_SEG_HEX/DE1_SOC_HEX.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/DE1_SOC_SEG_HEX/DE1_SOC_HEX.tcl -------------------------------------------------------------------------------- /DE1_SOC_SEG_HEX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/DE1_SOC_SEG_HEX/README.md -------------------------------------------------------------------------------- /DE1_SOC_SEG_HEX/hdl/DE1_SOC_HEX.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/DE1_SOC_SEG_HEX/hdl/DE1_SOC_HEX.v -------------------------------------------------------------------------------- /DE1_SOC_SEG_HEX/hdl/SEG_HEX.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/DE1_SOC_SEG_HEX/hdl/SEG_HEX.v -------------------------------------------------------------------------------- /DE1_SOC_SEG_HEX/output_files/DE1_SOC_HEX.sof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/DE1_SOC_SEG_HEX/output_files/DE1_SOC_HEX.sof -------------------------------------------------------------------------------- /DE1_SOC_SEG_HEX/文件列表.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/DE1_SOC_SEG_HEX/文件列表.txt -------------------------------------------------------------------------------- /Edge_Detect/Edge_Detect.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/Edge_Detect/Edge_Detect.vt -------------------------------------------------------------------------------- /Edge_Detect/sim/Edge_Detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/Edge_Detect/sim/Edge_Detect.v -------------------------------------------------------------------------------- /Fudan_uart/uart_rx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/Fudan_uart/uart_rx.v -------------------------------------------------------------------------------- /Fudan_uart/uart_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/Fudan_uart/uart_top.v -------------------------------------------------------------------------------- /Fudan_uart/uart_top_inst.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/Fudan_uart/uart_top_inst.v -------------------------------------------------------------------------------- /Fudan_uart/uart_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/Fudan_uart/uart_tx.v -------------------------------------------------------------------------------- /Key_Module/Key_Module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/Key_Module/Key_Module.v -------------------------------------------------------------------------------- /Key_Module/key_Module_inst.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/Key_Module/key_Module_inst.v -------------------------------------------------------------------------------- /Key_Module/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/Key_Module/说明.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Verilog_Module 2 | 收集一些常用的Verilog模块代码,方便调用 3 | -------------------------------------------------------------------------------- /RGB_Gary_Binary/RGB_Gary_Binary.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/RGB_Gary_Binary/RGB_Gary_Binary.v -------------------------------------------------------------------------------- /SEG_display/seg_display.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/SEG_display/seg_display.v -------------------------------------------------------------------------------- /SEG_display/seg_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/SEG_display/seg_test.v -------------------------------------------------------------------------------- /SEG_display/数码管原理图.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/SEG_display/数码管原理图.bmp -------------------------------------------------------------------------------- /SEG_display/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/SEG_display/说明.txt -------------------------------------------------------------------------------- /UART_Module/UART_TOP.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/UART_Module/UART_TOP.v -------------------------------------------------------------------------------- /UART_Module/baudgen.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/UART_Module/baudgen.v -------------------------------------------------------------------------------- /UART_Module/fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/UART_Module/fifo.v -------------------------------------------------------------------------------- /UART_Module/uart_rx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/UART_Module/uart_rx.v -------------------------------------------------------------------------------- /UART_Module/uart_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/UART_Module/uart_tx.v -------------------------------------------------------------------------------- /aq_axi_master/.gitignore: -------------------------------------------------------------------------------- 1 | sim 2 | .bak 3 | -------------------------------------------------------------------------------- /aq_axi_master/aq_axi_master.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/aq_axi_master/aq_axi_master.v -------------------------------------------------------------------------------- /aq_axi_master/axi_slave_v1_0_S00_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/aq_axi_master/axi_slave_v1_0_S00_AXI.v -------------------------------------------------------------------------------- /aq_axi_master/mem_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/aq_axi_master/mem_test.v -------------------------------------------------------------------------------- /aq_axi_master/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/aq_axi_master/top.v -------------------------------------------------------------------------------- /async_fifo-master/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.vcd 3 | *.lxt 4 | -------------------------------------------------------------------------------- /async_fifo-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/LICENSE -------------------------------------------------------------------------------- /async_fifo-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/README.md -------------------------------------------------------------------------------- /async_fifo-master/async_fifo.core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/async_fifo.core -------------------------------------------------------------------------------- /async_fifo-master/doc/architecture.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /async_fifo-master/doc/release.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /async_fifo-master/doc/specification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/doc/specification.rst -------------------------------------------------------------------------------- /async_fifo-master/doc/testplan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/doc/testplan.rst -------------------------------------------------------------------------------- /async_fifo-master/sim/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/sim/test/Makefile -------------------------------------------------------------------------------- /async_fifo-master/sim/test/async_fifo_unit_test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/sim/test/async_fifo_unit_test.sv -------------------------------------------------------------------------------- /async_fifo-master/sim/test/files.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/sim/test/files.f -------------------------------------------------------------------------------- /async_fifo-master/sim/test/wave.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/sim/test/wave.gtkw -------------------------------------------------------------------------------- /async_fifo-master/src/.gitignore: -------------------------------------------------------------------------------- 1 | db 2 | incremental_db 3 | output_files -------------------------------------------------------------------------------- /async_fifo-master/src/async_fifo.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/async_fifo.qpf -------------------------------------------------------------------------------- /async_fifo-master/src/async_fifo.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/async_fifo.qsf -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/async_bidir_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/async_bidir_fifo.v -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/async_bidir_ramif_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/async_bidir_ramif_fifo.v -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/async_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/async_fifo.v -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/fifo_2mem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/fifo_2mem.v -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/fifomem_dp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/fifomem_dp.v -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/rptr_empty.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/rptr_empty.v -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/sync_ptr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/sync_ptr.v -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/sync_r2w.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/sync_r2w.v -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/sync_w2r.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/sync_w2r.v -------------------------------------------------------------------------------- /async_fifo-master/src/vlog/wptr_full.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/async_fifo-master/src/vlog/wptr_full.v -------------------------------------------------------------------------------- /axi_full_sim/.gitignore: -------------------------------------------------------------------------------- 1 | sim 2 | .bak 3 | -------------------------------------------------------------------------------- /axi_full_sim/axi_full_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_full_top.v -------------------------------------------------------------------------------- /axi_full_sim/axi_master_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_master_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_master_1.0/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_master_1.0/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_master_1.0/example_designs/bfm_design/myip_v1_0_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_master_1.0/example_designs/bfm_design/myip_v1_0_tb.sv -------------------------------------------------------------------------------- /axi_full_sim/axi_master_1.0/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_master_1.0/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_master_1.0/example_designs/debug_hw_design/myip_v1_0_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_master_1.0/example_designs/debug_hw_design/myip_v1_0_hw_test.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_master_1.0/hdl/axi_master_v1_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_master_1.0/hdl/axi_master_v1_0.v -------------------------------------------------------------------------------- /axi_full_sim/axi_master_1.0/hdl/axi_master_v1_0_M00_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_master_1.0/hdl/axi_master_v1_0_M00_AXI.v -------------------------------------------------------------------------------- /axi_full_sim/axi_master_1.0/xgui/myip_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_master_1.0/xgui/myip_v1_0.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_master_v1_0_M00_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_master_v1_0_M00_AXI.v -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/data/axi_slave.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/data/axi_slave.mdd -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/data/axi_slave.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/data/axi_slave.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/src/Makefile -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/src/axi_slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/src/axi_slave.c -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/src/axi_slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/src/axi_slave.h -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/src/axi_slave_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/src/axi_slave_selftest.c -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/example_designs/bfm_design/axi_slave_v1_0_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/example_designs/bfm_design/axi_slave_v1_0_tb.sv -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/example_designs/debug_hw_design/axi_slave_v1_0_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/example_designs/debug_hw_design/axi_slave_v1_0_hw_test.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/hdl/axi_slave_v1_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/hdl/axi_slave_v1_0.v -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/hdl/axi_slave_v1_0_S00_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/hdl/axi_slave_v1_0_S00_AXI.v -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_1.0/xgui/axi_slave_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_1.0/xgui/axi_slave_v1_0.tcl -------------------------------------------------------------------------------- /axi_full_sim/axi_slave_v1_0_S00_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/axi_slave_v1_0_S00_AXI.v -------------------------------------------------------------------------------- /axi_full_sim/tb_axi_full_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/axi_full_sim/tb_axi_full_top.v -------------------------------------------------------------------------------- /fifo/fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/fifo/fifo.v -------------------------------------------------------------------------------- /hdmi_tx_1.0/hdl/DVITransmitter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/hdmi_tx_1.0/hdl/DVITransmitter.vhd -------------------------------------------------------------------------------- /hdmi_tx_1.0/hdl/SerializerN_1.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/hdmi_tx_1.0/hdl/SerializerN_1.vhd -------------------------------------------------------------------------------- /hdmi_tx_1.0/hdl/TMDSEncoder.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/hdmi_tx_1.0/hdl/TMDSEncoder.vhd -------------------------------------------------------------------------------- /hdmi_tx_1.0/hdl/hdmi_tx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/hdmi_tx_1.0/hdl/hdmi_tx.vhd -------------------------------------------------------------------------------- /hdmi_tx_1.0/hdmi_tx_0/hdmi_tx_0.xci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/hdmi_tx_1.0/hdmi_tx_0/hdmi_tx_0.xci -------------------------------------------------------------------------------- /hdmi_tx_1.0/xgui/AXI_DisplayController_v1_0_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/hdmi_tx_1.0/xgui/AXI_DisplayController_v1_0_v1_0.tcl -------------------------------------------------------------------------------- /hdmi_tx_1.0/xgui/hdmi_tx_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/hdmi_tx_1.0/xgui/hdmi_tx_v1_0.tcl -------------------------------------------------------------------------------- /i2c_master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/.gitignore -------------------------------------------------------------------------------- /i2c_master/i2c_config.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/i2c_config.v -------------------------------------------------------------------------------- /i2c_master/i2c_master/i2c_master_bit_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/i2c_master/i2c_master_bit_ctrl.v -------------------------------------------------------------------------------- /i2c_master/i2c_master/i2c_master_byte_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/i2c_master/i2c_master_byte_ctrl.v -------------------------------------------------------------------------------- /i2c_master/i2c_master/i2c_master_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/i2c_master/i2c_master_defines.v -------------------------------------------------------------------------------- /i2c_master/i2c_master/i2c_master_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/i2c_master/i2c_master_top.v -------------------------------------------------------------------------------- /i2c_master/i2c_master/timescale.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns / 10ps 2 | 3 | -------------------------------------------------------------------------------- /i2c_master/lut_ov5640_rgb565_480_272.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/lut_ov5640_rgb565_480_272.v -------------------------------------------------------------------------------- /i2c_master/ov5640_config_top.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/ov5640_config_top.qpf -------------------------------------------------------------------------------- /i2c_master/ov5640_config_top.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/ov5640_config_top.qsf -------------------------------------------------------------------------------- /i2c_master/ov5640_config_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/i2c_master/ov5640_config_top.v -------------------------------------------------------------------------------- /pwm/PWM_ip.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/pwm/PWM_ip.v -------------------------------------------------------------------------------- /pwm_motor/PWM_ip.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/pwm_motor/PWM_ip.v -------------------------------------------------------------------------------- /pwm_motor/Segled_Module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/pwm_motor/Segled_Module.v -------------------------------------------------------------------------------- /pwm_motor/pwm_control.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/pwm_motor/pwm_control.v -------------------------------------------------------------------------------- /pwm_motor/sim/top.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/pwm_motor/sim/top.vt -------------------------------------------------------------------------------- /pwm_motor/speed_display.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/pwm_motor/speed_display.v -------------------------------------------------------------------------------- /pwm_motor/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/pwm_motor/top.v -------------------------------------------------------------------------------- /pwm_motor/工程说明.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/pwm_motor/工程说明.docx -------------------------------------------------------------------------------- /ram_2p/ram_2p.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/ram_2p/ram_2p.v -------------------------------------------------------------------------------- /sdram_core/sdram_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/sdram_core/sdram_core.v -------------------------------------------------------------------------------- /uart_module/uart_inst.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/uart_module/uart_inst.v -------------------------------------------------------------------------------- /uart_module/urat_test/data_16bit_to_8bit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/uart_module/urat_test/data_16bit_to_8bit.v -------------------------------------------------------------------------------- /uart_module/urat_test/data_to_8bit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/uart_module/urat_test/data_to_8bit.v -------------------------------------------------------------------------------- /uart_module/urat_test/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/uart_module/urat_test/top.v -------------------------------------------------------------------------------- /uart_module/urat_test/uart_test_data.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/uart_module/urat_test/uart_test_data.v -------------------------------------------------------------------------------- /uart_module/urat_test/说明.txt: -------------------------------------------------------------------------------- 1 | uart_test_data模块:该模块每1秒发送一次8字节的测试数据。 -------------------------------------------------------------------------------- /vivado-library-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/vivado-library-master.zip -------------------------------------------------------------------------------- /wave_data/sin_1024_14bit_signd.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/wave_data/sin_1024_14bit_signd.hex -------------------------------------------------------------------------------- /wave_data/sin_16bit_1024_signed.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/wave_data/sin_16bit_1024_signed.hex -------------------------------------------------------------------------------- /wave_data/sin_16bit_32768_signed.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/wave_data/sin_16bit_32768_signed.hex -------------------------------------------------------------------------------- /wave_data/sin_8bit_1024_unsigne.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/wave_data/sin_8bit_1024_unsigne.hex -------------------------------------------------------------------------------- /white_balance/white_balance.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WayneGong/Verilog_Module/HEAD/white_balance/white_balance.v --------------------------------------------------------------------------------