├── .gitignore ├── .vscode └── launch.json ├── README.md ├── boards ├── basys3 │ ├── Makefile │ ├── basys3.v │ ├── basys3.xdc │ ├── make_project.bat │ ├── make_project.sh │ ├── system_create.tcl │ ├── system_load.tcl │ └── system_synth.tcl ├── de0 │ ├── Makefile │ ├── de0.qpf │ ├── de0.qsf │ ├── de0.sdc │ ├── de0.v │ ├── make_project.bat │ └── make_project.sh ├── de0_cv │ ├── Makefile │ ├── board_config.vh │ ├── de0_cv.qpf │ ├── de0_cv.qsf │ ├── de0_cv.sdc │ ├── de0_cv.v │ ├── make_project.bat │ └── make_project.sh ├── de0_nano │ ├── Makefile │ ├── de0_nano.qpf │ ├── de0_nano.qsf │ ├── de0_nano.sdc │ ├── de0_nano.v │ ├── make_project.bat │ └── make_project.sh ├── de1 │ ├── Makefile │ ├── de1.qpf │ ├── de1.qsf │ ├── de1.sdc │ ├── de1.v │ ├── make_project.bat │ └── make_project.sh ├── de10_lite │ ├── Makefile │ ├── adc.qsys │ ├── board_config.vh │ ├── de10_lite.qpf │ ├── de10_lite.qsf │ ├── de10_lite.sdc │ ├── de10_lite.v │ ├── make_project.bat │ ├── make_project.sh │ ├── pll.ppf │ ├── pll.qip │ └── pll.v ├── de10_nano │ ├── Makefile │ ├── de10_nano.qpf │ ├── de10_nano.qsf │ ├── de10_nano.sdc │ ├── de10_nano.v │ ├── make_project.bat │ └── make_project.sh ├── de2_115 │ ├── Makefile │ ├── de2_115.qpf │ ├── de2_115.qsf │ ├── de2_115.sdc │ ├── de2_115.v │ ├── make_project.bat │ └── make_project.sh ├── nexys4 │ ├── Makefile │ ├── make_project.bat │ ├── make_project.sh │ ├── nexys4.v │ ├── nexys4.xdc │ ├── system_create.tcl │ ├── system_load.tcl │ └── system_synth.tcl └── nexys4_ddr │ ├── Makefile │ ├── make_project.bat │ ├── make_project.sh │ ├── nexys4_ddr.v │ ├── nexys4_ddr.xdc │ ├── system_create.tcl │ ├── system_load.tcl │ └── system_synth.tcl ├── core ├── .gitignore └── README ├── documentation ├── .gitignore ├── connecting_instructions │ ├── mipsfpga-plus-de0-cv.html │ ├── mipsfpga-plus-de0-cv.html.imgtec_forum │ ├── mipsfpga-plus-nexys4-ddr.html │ ├── mipsfpga-plus-nexys4-ddr.html.imgtec_forum │ ├── mipsfpga-plus-xilinx.html │ └── mipsfpga-plus-xilinx.html.imgtec_forum ├── edited_figures │ ├── hierarchy_de0_cv__narrow_write_support.html │ ├── hierarchy_de0_cv__narrow_write_support.png │ ├── hierarchy_de0_cv__narrow_write_support__light_sensor.html │ ├── hierarchy_de0_cv__narrow_write_support__light_sensor.png │ ├── hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader.html │ ├── hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader.png │ ├── hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader__switchable_clock.html │ ├── hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader__switchable_clock.png │ ├── hierarchy_de0_cv__narrow_write_support__serial_loader__wo_7_segment_display.html │ ├── hierarchy_de0_cv__narrow_write_support__serial_loader__wo_7_segment_display.png │ ├── hierarchy_de0_cv__narrow_write_support__wo_7_segment_display.html │ ├── hierarchy_de0_cv__narrow_write_support__wo_7_segment_display.png │ ├── hierarchy_de0_cv_basic.html │ ├── hierarchy_de0_cv_basic.png │ ├── hierarchy_de0_cv_full.html │ ├── hierarchy_de0_cv_full.png │ ├── hierarchy_mfp_testbench__narrow_write_support.html │ ├── hierarchy_mfp_testbench__narrow_write_support.png │ ├── hierarchy_mfp_testbench_basic.html │ ├── hierarchy_mfp_testbench_basic.png │ ├── hierarchy_mfp_testbench_full.html │ ├── hierarchy_mfp_testbench_full.png │ ├── hierarchy_nexys4_ddr__narrow_write_support.html │ ├── hierarchy_nexys4_ddr__narrow_write_support.png │ ├── hierarchy_nexys4_ddr__narrow_write_support__light_sensor.html │ ├── hierarchy_nexys4_ddr__narrow_write_support__light_sensor.png │ ├── hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader.html │ ├── hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader.png │ ├── hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader__switchable_clock.html │ ├── hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader__switchable_clock.png │ ├── hierarchy_nexys4_ddr__narrow_write_support__serial_loader__wo_7_segment_display.html │ ├── hierarchy_nexys4_ddr__narrow_write_support__serial_loader__wo_7_segment_display.png │ ├── hierarchy_nexys4_ddr__narrow_write_support__wo_7_segment_display.html │ ├── hierarchy_nexys4_ddr__narrow_write_support__wo_7_segment_display.png │ ├── hierarchy_nexys4_ddr_basic.html │ ├── hierarchy_nexys4_ddr_basic.png │ ├── hierarchy_nexys4_ddr_full.html │ └── hierarchy_nexys4_ddr_full.png ├── figure_generator │ ├── clean.bat │ ├── generator.cpp │ ├── run_all │ ├── run_all.bat │ └── utilities.cpp ├── html_labs │ ├── lab_yp1_serial_loader_flow │ │ ├── lab_yp1.html │ │ ├── lab_yp1_0.html │ │ ├── lab_yp1_1.html │ │ ├── lab_yp1_2.html │ │ ├── lab_yp1_3.html │ │ ├── lab_yp1_4_1.html │ │ ├── lab_yp1_4_2.html │ │ ├── lab_yp1_4_3.html │ │ ├── lab_yp1_5_1_5_4.html │ │ ├── lab_yp1_5_5_1.html │ │ ├── lab_yp1_5_5_2.html │ │ ├── lab_yp1_5_5_3.html │ │ ├── lab_yp1_5_6.html │ │ ├── lab_yp1_a.html │ │ ├── lab_yp1_z.html │ │ ├── mipsfpga_2_0_lab_yp1.docx │ │ ├── mipsfpga_2_0_lab_yp1.pdf │ │ ├── r.bat │ │ └── r.sh │ ├── lab_yp2_switchable_clock │ │ ├── lab_yp2.html │ │ ├── lab_yp2_0.html │ │ ├── lab_yp2_1.html │ │ ├── lab_yp2_2.html │ │ ├── lab_yp2_3.html │ │ ├── lab_yp2_a.html │ │ ├── lab_yp2_z.html │ │ ├── mipsfpga_2_0_lab_yp2.docx │ │ ├── mipsfpga_2_0_lab_yp2.pdf │ │ ├── r.bat │ │ ├── r.sh │ │ └── zzz_misspelled │ ├── lab_yp3_light_sensor │ │ ├── lab_yp3.html │ │ ├── lab_yp3_0.html │ │ ├── lab_yp3_1.html │ │ ├── lab_yp3_2.html │ │ ├── lab_yp3_3.html │ │ ├── lab_yp3_4.html │ │ ├── lab_yp3_z.html │ │ ├── mipsfpga_2_0_lab_yp3.docx │ │ ├── mipsfpga_2_0_lab_yp3.pdf │ │ ├── r.bat │ │ ├── r.sh │ │ └── zzz_misspelled │ ├── lab_yp4_interrupts │ │ ├── lab_yp4.html │ │ ├── lab_yp4_0.html │ │ ├── lab_yp4_1.html │ │ ├── lab_yp4_2.html │ │ ├── lab_yp4_3.html │ │ ├── lab_yp4_4.html │ │ ├── lab_yp4_5.html │ │ ├── lab_yp4_a.html │ │ ├── lab_yp4_b.html │ │ ├── lab_yp4_c.html │ │ ├── lab_yp4_z.html │ │ ├── mipsfpga_2_0_lab_yp4.docx │ │ ├── mipsfpga_2_0_lab_yp4.pdf │ │ ├── r.bat │ │ ├── r.sh │ │ └── zzz_misspelled │ ├── lab_yp5_cache_misses │ │ ├── lab_yp5.html │ │ ├── lab_yp5_0.html │ │ ├── lab_yp5_1.html │ │ ├── lab_yp5_2.html │ │ ├── lab_yp5_3.html │ │ ├── lab_yp5_z.html │ │ ├── mipsfpga_2_0_lab_yp5.docx │ │ ├── mipsfpga_2_0_lab_yp5.pdf │ │ ├── r.bat │ │ ├── r.sh │ │ └── zzz_misspelled │ └── lab_yp6_pipeline_bypasses │ │ ├── lab_yp6.html │ │ ├── lab_yp6_0.html │ │ ├── lab_yp6_1.html │ │ ├── lab_yp6_2.html │ │ ├── lab_yp6_3.html │ │ ├── lab_yp6_z.html │ │ ├── mipsfpga_2_0_lab_yp6.docx │ │ ├── mipsfpga_2_0_lab_yp6.pdf │ │ ├── r.bat │ │ ├── r.sh │ │ └── zzz_misspelled ├── html_labs_for_blog │ ├── a1.html │ ├── a2.html │ ├── a3.html │ ├── a4.html │ ├── a5.html │ ├── a6.html │ └── convert_html_to_wordpress.c ├── html_labs_in_russian │ └── lab-1.html ├── html_labs_mips_open │ ├── lab_mo1_serial_loader_flow │ │ ├── lab_mo1.html │ │ ├── lab_mo1_0.html │ │ ├── lab_mo1_1.html │ │ ├── lab_mo1_2.html │ │ ├── lab_mo1_3.html │ │ ├── lab_mo1_4_1.html │ │ ├── lab_mo1_4_2.html │ │ ├── lab_mo1_4_3.html │ │ ├── lab_mo1_5_1_5_4.html │ │ ├── lab_mo1_5_5_1.html │ │ ├── lab_mo1_5_5_2.html │ │ ├── lab_mo1_5_5_3.html │ │ ├── lab_mo1_5_6.html │ │ ├── lab_mo1_a.html │ │ ├── lab_mo1_z.html │ │ ├── r.bat │ │ └── r.sh │ ├── lab_mo2_switchable_clock │ │ ├── lab_mo2.html │ │ ├── lab_mo2_0.html │ │ ├── lab_mo2_1.html │ │ ├── lab_mo2_2.html │ │ ├── lab_mo2_3.html │ │ ├── lab_mo2_a.html │ │ ├── lab_mo2_z.html │ │ ├── r.bat │ │ └── r.sh │ ├── lab_mo3_light_sensor │ │ ├── lab_mo3.html │ │ ├── lab_mo3_0.html │ │ ├── lab_mo3_1.html │ │ ├── lab_mo3_2.html │ │ ├── lab_mo3_3.html │ │ ├── lab_mo3_4.html │ │ ├── lab_mo3_z.html │ │ ├── r.bat │ │ └── r.sh │ ├── lab_mo4_interrupts │ │ ├── lab_mo4.html │ │ ├── lab_mo4_0.html │ │ ├── lab_mo4_1.html │ │ ├── lab_mo4_2.html │ │ ├── lab_mo4_3.html │ │ ├── lab_mo4_4.html │ │ ├── lab_mo4_5.html │ │ ├── lab_mo4_a.html │ │ ├── lab_mo4_b.html │ │ ├── lab_mo4_c.html │ │ ├── lab_mo4_z.html │ │ ├── r.bat │ │ └── r.sh │ ├── lab_mo5_cache_misses │ │ ├── lab_mo5.html │ │ ├── lab_mo5_0.html │ │ ├── lab_mo5_1.html │ │ ├── lab_mo5_2.html │ │ ├── lab_mo5_3.html │ │ ├── lab_mo5_z.html │ │ ├── r.bat │ │ └── r.sh │ ├── lab_mo6_pipeline_bypasses │ │ ├── lab_mo6.html │ │ ├── lab_mo6_0.html │ │ ├── lab_mo6_1.html │ │ ├── lab_mo6_2.html │ │ ├── lab_mo6_3.html │ │ ├── lab_mo6_z.html │ │ ├── r.bat │ │ └── r.sh │ └── lab_mo_note.html ├── html_to_imgtec_forum_converter │ ├── html_to_imgtec_forum_converter.bat │ └── html_to_imgtec_forum_converter.sed ├── labs │ ├── lab_mo1_serial_loader_flow.pdf │ ├── lab_mo2_switchable_clock.pdf │ ├── lab_mo3_light_sensor.pdf │ ├── lab_mo4_interrupts.pdf │ ├── lab_mo5_cache_misses.pdf │ └── lab_mo6_pipeline_bypasses.pdf ├── peripherals │ ├── 20170320_mfp_EIC.pdf │ ├── 20170612_MFP_ADC for Altera MAX10.pdf │ └── UART_spec.pdf └── slides │ └── mipsopen_developer_day_dac_2019_05_31.pdf ├── exercises └── module_to_use │ ├── hc_sr04_ultrasonic_distance_sensor.v │ ├── m14k_udi_mipsfpga_ai.v │ ├── pmod_als_light_sensor.v │ └── pmod_enc_rotary_encoder.v ├── programs ├── 00_counter │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 01_light_sensor │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 02_interrupts │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── exceptions.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 03_cache_misses │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 04_pipeline_bypasses │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 05_corextend │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── corextend.h │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 06_memtest │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 07_uart │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ ├── program.ld │ └── uart16550.h ├── 08_timer_irq │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── exceptions.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 09_eic │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── eic.h │ ├── exceptions.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 10_uart_irq │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── boot.S │ ├── exceptions.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ ├── program.ld │ └── uart16550.h ├── 11_adc │ ├── 00_clean_all.sh │ ├── 01_compile_c_to_assembly.sh │ ├── 02_compile_and_link.sh │ ├── 03_check_program_size.sh │ ├── 04_disassemble.sh │ ├── 05_generate_verilog_readmemh_file.sh │ ├── 06_simulate_with_modelsim.sh │ ├── 07_simulate_with_icarus.sh │ ├── 08_generate_motorola_s_record_file.sh │ ├── 10_upload_to_the_board_using_uart.sh │ ├── 11_upload_to_the_board.sh │ ├── 12_debug_on_the_board.sh │ ├── 13_attach_to_the_board.sh │ ├── adc_m10.h │ ├── boot.S │ ├── exceptions.S │ ├── main.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ ├── modelsim_script.tcl │ └── program.ld ├── 12_linux │ ├── .gitignore │ ├── 00_upload_presaved_image.bat │ ├── 00_upload_presaved_image.sh │ ├── 01_upload_compiled_image.bat │ ├── 01_upload_compiled_image.sh │ ├── README.md │ ├── image │ │ ├── vmlinux │ │ └── vmlinuz │ ├── makefile │ └── patches │ │ ├── MIPSfpga_buildroot.patch │ │ └── MIPSfpga_linux.patch ├── 13_new_boot │ ├── boot.S │ ├── crt0.S │ ├── dummy.S │ ├── exceptions.S │ ├── main.c │ ├── main.s │ ├── main1.c │ ├── makefile │ ├── mfp_memory_mapped_registers.h │ └── runme.sh ├── README.md └── makefile ├── scripts ├── load │ ├── board │ │ ├── mfp_busblaster.cfg │ │ └── mfp_mpsse.cfg │ ├── openocd.cfg │ └── udev_rules │ │ └── 99-busblaster.rules ├── make_wrappers │ ├── board │ │ ├── make_project.bat │ │ └── make_project.sh │ └── program │ │ ├── 00_clean_all.bat │ │ ├── 00_clean_all.sh │ │ ├── 01_compile_c_to_assembly.bat │ │ ├── 01_compile_c_to_assembly.sh │ │ ├── 02_compile_and_link.bat │ │ ├── 02_compile_and_link.sh │ │ ├── 03_check_program_size.bat │ │ ├── 03_check_program_size.sh │ │ ├── 04_disassemble.bat │ │ ├── 04_disassemble.sh │ │ ├── 05_generate_verilog_readmemh_file.bat │ │ ├── 05_generate_verilog_readmemh_file.sh │ │ ├── 06_simulate_with_modelsim.bat │ │ ├── 06_simulate_with_modelsim.sh │ │ ├── 07_simulate_with_icarus.bat │ │ ├── 07_simulate_with_icarus.sh │ │ ├── 08_generate_motorola_s_record_file.bat │ │ ├── 08_generate_motorola_s_record_file.sh │ │ ├── 09_check_which_com_port_is_used.bat │ │ ├── 10_upload_to_the_board_using_uart.bat │ │ ├── 10_upload_to_the_board_using_uart.sh │ │ ├── 11_upload_to_the_board.bat │ │ ├── 11_upload_to_the_board.sh │ │ ├── 12_debug_on_the_board.bat │ │ ├── 12_debug_on_the_board.sh │ │ ├── 13_attach_to_the_board.bat │ │ └── 13_attach_to_the_board.sh ├── release │ └── release_now.bash ├── utilities │ ├── ad_hoc_program_hex_splitter │ ├── ad_hoc_program_hex_splitter.c │ ├── ad_hoc_program_hex_splitter.exe │ └── build.bat └── vscode │ ├── c_cpp_properties.json │ └── launch.json ├── system_rtl ├── mfp_adc_max10_core.v ├── mfp_adc_max10_core.vh ├── mfp_ahb_gpio_slave.v ├── mfp_ahb_lite.vh ├── mfp_ahb_lite_adc_max10.v ├── mfp_ahb_lite_eic.v ├── mfp_ahb_lite_matrix.v ├── mfp_ahb_lite_matrix_config.vh ├── mfp_ahb_lite_matrix_with_loader.v ├── mfp_ahb_lite_pmod_als.v ├── mfp_ahb_lite_slave.v ├── mfp_ahb_lite_uart16550.v ├── mfp_ahb_ram_busy.v ├── mfp_ahb_ram_sdram.v ├── mfp_ahb_ram_slave.v ├── mfp_clock_dividers.v ├── mfp_dual_port_ram.v ├── mfp_eic_core.v ├── mfp_eic_core.vh ├── mfp_eic_handler.v ├── mfp_pmod_als_spi_receiver.v ├── mfp_priority_encoder.v ├── mfp_register.v ├── mfp_seven_segment_displays.v ├── mfp_srec_parser.v ├── mfp_srec_parser_to_ahb_lite_bridge.v ├── mfp_switch_and_button_debouncers.v ├── mfp_system.v ├── mfp_uart_loader.v ├── mfp_uart_receiver.v └── uart16550 │ ├── raminfr.v │ ├── uart_defines.vh │ ├── uart_receiver.v │ ├── uart_regs.v │ ├── uart_rfifo.v │ ├── uart_sync_flops.v │ ├── uart_tfifo.v │ └── uart_transmitter.v └── testbench ├── adc_max10 ├── README ├── adc_core.v ├── adc_core_modular_adc_0.v ├── altera_modular_adc_control.v ├── altera_modular_adc_control_avrg_fifo.v ├── altera_modular_adc_control_fsm.v ├── chsel_code_converter_sw_to_hw.v ├── fiftyfivenm_adcblock_primitive_wrapper.v └── fiftyfivenm_adcblock_top_wrapper.v ├── mfp_testbench.v ├── mfp_uart_testbench.v └── sdr_sdram ├── sdr.v └── sdr_parameters.vh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/README.md -------------------------------------------------------------------------------- /boards/basys3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/basys3/Makefile -------------------------------------------------------------------------------- /boards/basys3/basys3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/basys3/basys3.v -------------------------------------------------------------------------------- /boards/basys3/basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/basys3/basys3.xdc -------------------------------------------------------------------------------- /boards/basys3/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/basys3/make_project.bat -------------------------------------------------------------------------------- /boards/basys3/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/basys3/make_project.sh -------------------------------------------------------------------------------- /boards/basys3/system_create.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/basys3/system_create.tcl -------------------------------------------------------------------------------- /boards/basys3/system_load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/basys3/system_load.tcl -------------------------------------------------------------------------------- /boards/basys3/system_synth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/basys3/system_synth.tcl -------------------------------------------------------------------------------- /boards/de0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0/Makefile -------------------------------------------------------------------------------- /boards/de0/de0.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0/de0.qpf -------------------------------------------------------------------------------- /boards/de0/de0.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0/de0.qsf -------------------------------------------------------------------------------- /boards/de0/de0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0/de0.sdc -------------------------------------------------------------------------------- /boards/de0/de0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0/de0.v -------------------------------------------------------------------------------- /boards/de0/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0/make_project.bat -------------------------------------------------------------------------------- /boards/de0/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0/make_project.sh -------------------------------------------------------------------------------- /boards/de0_cv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_cv/Makefile -------------------------------------------------------------------------------- /boards/de0_cv/board_config.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_cv/board_config.vh -------------------------------------------------------------------------------- /boards/de0_cv/de0_cv.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_cv/de0_cv.qpf -------------------------------------------------------------------------------- /boards/de0_cv/de0_cv.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_cv/de0_cv.qsf -------------------------------------------------------------------------------- /boards/de0_cv/de0_cv.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_cv/de0_cv.sdc -------------------------------------------------------------------------------- /boards/de0_cv/de0_cv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_cv/de0_cv.v -------------------------------------------------------------------------------- /boards/de0_cv/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_cv/make_project.bat -------------------------------------------------------------------------------- /boards/de0_cv/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_cv/make_project.sh -------------------------------------------------------------------------------- /boards/de0_nano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_nano/Makefile -------------------------------------------------------------------------------- /boards/de0_nano/de0_nano.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_nano/de0_nano.qpf -------------------------------------------------------------------------------- /boards/de0_nano/de0_nano.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_nano/de0_nano.qsf -------------------------------------------------------------------------------- /boards/de0_nano/de0_nano.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_nano/de0_nano.sdc -------------------------------------------------------------------------------- /boards/de0_nano/de0_nano.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_nano/de0_nano.v -------------------------------------------------------------------------------- /boards/de0_nano/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_nano/make_project.bat -------------------------------------------------------------------------------- /boards/de0_nano/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de0_nano/make_project.sh -------------------------------------------------------------------------------- /boards/de1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de1/Makefile -------------------------------------------------------------------------------- /boards/de1/de1.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de1/de1.qpf -------------------------------------------------------------------------------- /boards/de1/de1.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de1/de1.qsf -------------------------------------------------------------------------------- /boards/de1/de1.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de1/de1.sdc -------------------------------------------------------------------------------- /boards/de1/de1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de1/de1.v -------------------------------------------------------------------------------- /boards/de1/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de1/make_project.bat -------------------------------------------------------------------------------- /boards/de1/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de1/make_project.sh -------------------------------------------------------------------------------- /boards/de10_lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/Makefile -------------------------------------------------------------------------------- /boards/de10_lite/adc.qsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/adc.qsys -------------------------------------------------------------------------------- /boards/de10_lite/board_config.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/board_config.vh -------------------------------------------------------------------------------- /boards/de10_lite/de10_lite.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/de10_lite.qpf -------------------------------------------------------------------------------- /boards/de10_lite/de10_lite.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/de10_lite.qsf -------------------------------------------------------------------------------- /boards/de10_lite/de10_lite.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/de10_lite.sdc -------------------------------------------------------------------------------- /boards/de10_lite/de10_lite.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/de10_lite.v -------------------------------------------------------------------------------- /boards/de10_lite/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/make_project.bat -------------------------------------------------------------------------------- /boards/de10_lite/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/make_project.sh -------------------------------------------------------------------------------- /boards/de10_lite/pll.ppf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/pll.ppf -------------------------------------------------------------------------------- /boards/de10_lite/pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/pll.qip -------------------------------------------------------------------------------- /boards/de10_lite/pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_lite/pll.v -------------------------------------------------------------------------------- /boards/de10_nano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_nano/Makefile -------------------------------------------------------------------------------- /boards/de10_nano/de10_nano.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_nano/de10_nano.qpf -------------------------------------------------------------------------------- /boards/de10_nano/de10_nano.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_nano/de10_nano.qsf -------------------------------------------------------------------------------- /boards/de10_nano/de10_nano.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_nano/de10_nano.sdc -------------------------------------------------------------------------------- /boards/de10_nano/de10_nano.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_nano/de10_nano.v -------------------------------------------------------------------------------- /boards/de10_nano/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_nano/make_project.bat -------------------------------------------------------------------------------- /boards/de10_nano/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de10_nano/make_project.sh -------------------------------------------------------------------------------- /boards/de2_115/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de2_115/Makefile -------------------------------------------------------------------------------- /boards/de2_115/de2_115.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de2_115/de2_115.qpf -------------------------------------------------------------------------------- /boards/de2_115/de2_115.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de2_115/de2_115.qsf -------------------------------------------------------------------------------- /boards/de2_115/de2_115.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de2_115/de2_115.sdc -------------------------------------------------------------------------------- /boards/de2_115/de2_115.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de2_115/de2_115.v -------------------------------------------------------------------------------- /boards/de2_115/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de2_115/make_project.bat -------------------------------------------------------------------------------- /boards/de2_115/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/de2_115/make_project.sh -------------------------------------------------------------------------------- /boards/nexys4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4/Makefile -------------------------------------------------------------------------------- /boards/nexys4/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4/make_project.bat -------------------------------------------------------------------------------- /boards/nexys4/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4/make_project.sh -------------------------------------------------------------------------------- /boards/nexys4/nexys4.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4/nexys4.v -------------------------------------------------------------------------------- /boards/nexys4/nexys4.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4/nexys4.xdc -------------------------------------------------------------------------------- /boards/nexys4/system_create.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4/system_create.tcl -------------------------------------------------------------------------------- /boards/nexys4/system_load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4/system_load.tcl -------------------------------------------------------------------------------- /boards/nexys4/system_synth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4/system_synth.tcl -------------------------------------------------------------------------------- /boards/nexys4_ddr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4_ddr/Makefile -------------------------------------------------------------------------------- /boards/nexys4_ddr/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4_ddr/make_project.bat -------------------------------------------------------------------------------- /boards/nexys4_ddr/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4_ddr/make_project.sh -------------------------------------------------------------------------------- /boards/nexys4_ddr/nexys4_ddr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4_ddr/nexys4_ddr.v -------------------------------------------------------------------------------- /boards/nexys4_ddr/nexys4_ddr.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4_ddr/nexys4_ddr.xdc -------------------------------------------------------------------------------- /boards/nexys4_ddr/system_create.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4_ddr/system_create.tcl -------------------------------------------------------------------------------- /boards/nexys4_ddr/system_load.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4_ddr/system_load.tcl -------------------------------------------------------------------------------- /boards/nexys4_ddr/system_synth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/boards/nexys4_ddr/system_synth.tcl -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | *.v 2 | *.vh 3 | *.txt 4 | -------------------------------------------------------------------------------- /core/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/core/README -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/connecting_instructions/mipsfpga-plus-de0-cv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/connecting_instructions/mipsfpga-plus-de0-cv.html -------------------------------------------------------------------------------- /documentation/connecting_instructions/mipsfpga-plus-de0-cv.html.imgtec_forum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/connecting_instructions/mipsfpga-plus-de0-cv.html.imgtec_forum -------------------------------------------------------------------------------- /documentation/connecting_instructions/mipsfpga-plus-nexys4-ddr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/connecting_instructions/mipsfpga-plus-nexys4-ddr.html -------------------------------------------------------------------------------- /documentation/connecting_instructions/mipsfpga-plus-nexys4-ddr.html.imgtec_forum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/connecting_instructions/mipsfpga-plus-nexys4-ddr.html.imgtec_forum -------------------------------------------------------------------------------- /documentation/connecting_instructions/mipsfpga-plus-xilinx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/connecting_instructions/mipsfpga-plus-xilinx.html -------------------------------------------------------------------------------- /documentation/connecting_instructions/mipsfpga-plus-xilinx.html.imgtec_forum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/connecting_instructions/mipsfpga-plus-xilinx.html.imgtec_forum -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader__switchable_clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader__switchable_clock.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader__switchable_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__light_sensor__serial_loader__switchable_clock.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__serial_loader__wo_7_segment_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__serial_loader__wo_7_segment_display.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__serial_loader__wo_7_segment_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__serial_loader__wo_7_segment_display.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__wo_7_segment_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__wo_7_segment_display.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__wo_7_segment_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv__narrow_write_support__wo_7_segment_display.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv_basic.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv_basic.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv_full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv_full.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_de0_cv_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_de0_cv_full.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_mfp_testbench__narrow_write_support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_mfp_testbench__narrow_write_support.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_mfp_testbench__narrow_write_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_mfp_testbench__narrow_write_support.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_mfp_testbench_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_mfp_testbench_basic.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_mfp_testbench_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_mfp_testbench_basic.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_mfp_testbench_full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_mfp_testbench_full.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_mfp_testbench_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_mfp_testbench_full.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader__switchable_clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader__switchable_clock.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader__switchable_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__light_sensor__serial_loader__switchable_clock.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__serial_loader__wo_7_segment_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__serial_loader__wo_7_segment_display.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__serial_loader__wo_7_segment_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__serial_loader__wo_7_segment_display.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__wo_7_segment_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__wo_7_segment_display.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__wo_7_segment_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr__narrow_write_support__wo_7_segment_display.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr_basic.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr_basic.png -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr_full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr_full.html -------------------------------------------------------------------------------- /documentation/edited_figures/hierarchy_nexys4_ddr_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/edited_figures/hierarchy_nexys4_ddr_full.png -------------------------------------------------------------------------------- /documentation/figure_generator/clean.bat: -------------------------------------------------------------------------------- 1 | rd /s /q ..\run 2 | del a.lst 3 | -------------------------------------------------------------------------------- /documentation/figure_generator/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/figure_generator/generator.cpp -------------------------------------------------------------------------------- /documentation/figure_generator/run_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/figure_generator/run_all -------------------------------------------------------------------------------- /documentation/figure_generator/run_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/figure_generator/run_all.bat -------------------------------------------------------------------------------- /documentation/figure_generator/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/figure_generator/utilities.cpp -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_0.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_1.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_2.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_3.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_4_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_4_1.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_4_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_4_2.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_4_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_4_3.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_1_5_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_1_5_4.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_5_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_5_1.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_5_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_5_2.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_5_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_5_3.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_5_6.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_a.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/lab_yp1_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/mipsfpga_2_0_lab_yp1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/mipsfpga_2_0_lab_yp1.docx -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/mipsfpga_2_0_lab_yp1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/mipsfpga_2_0_lab_yp1.pdf -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/r.bat -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp1_serial_loader_flow/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp1_serial_loader_flow/r.sh -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/lab_yp2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/lab_yp2.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_0.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_1.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_2.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_3.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_a.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/lab_yp2_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/mipsfpga_2_0_lab_yp2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/mipsfpga_2_0_lab_yp2.docx -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/mipsfpga_2_0_lab_yp2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/mipsfpga_2_0_lab_yp2.pdf -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/r.bat -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp2_switchable_clock/r.sh -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp2_switchable_clock/zzz_misspelled: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/lab_yp3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/lab_yp3.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/lab_yp3_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/lab_yp3_0.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/lab_yp3_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/lab_yp3_1.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/lab_yp3_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/lab_yp3_2.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/lab_yp3_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/lab_yp3_3.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/lab_yp3_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/lab_yp3_4.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/lab_yp3_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/mipsfpga_2_0_lab_yp3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/mipsfpga_2_0_lab_yp3.docx -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/mipsfpga_2_0_lab_yp3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/mipsfpga_2_0_lab_yp3.pdf -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/r.bat -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp3_light_sensor/r.sh -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp3_light_sensor/zzz_misspelled: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4_0.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4_1.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4_2.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4_3.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4_4.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4_5.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4_a.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4_b.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/lab_yp4_c.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/lab_yp4_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/mipsfpga_2_0_lab_yp4.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/mipsfpga_2_0_lab_yp4.docx -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/mipsfpga_2_0_lab_yp4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/mipsfpga_2_0_lab_yp4.pdf -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/r.bat -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/r.sh -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp4_interrupts/zzz_misspelled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp4_interrupts/zzz_misspelled -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/lab_yp5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp5_cache_misses/lab_yp5.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/lab_yp5_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp5_cache_misses/lab_yp5_0.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/lab_yp5_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp5_cache_misses/lab_yp5_1.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/lab_yp5_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp5_cache_misses/lab_yp5_2.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/lab_yp5_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp5_cache_misses/lab_yp5_3.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/lab_yp5_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/mipsfpga_2_0_lab_yp5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp5_cache_misses/mipsfpga_2_0_lab_yp5.docx -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/mipsfpga_2_0_lab_yp5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp5_cache_misses/mipsfpga_2_0_lab_yp5.pdf -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp5_cache_misses/r.bat -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp5_cache_misses/r.sh -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp5_cache_misses/zzz_misspelled: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6_0.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6_1.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6_2.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6_3.html -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/lab_yp6_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/mipsfpga_2_0_lab_yp6.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp6_pipeline_bypasses/mipsfpga_2_0_lab_yp6.docx -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/mipsfpga_2_0_lab_yp6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp6_pipeline_bypasses/mipsfpga_2_0_lab_yp6.pdf -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp6_pipeline_bypasses/r.bat -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs/lab_yp6_pipeline_bypasses/r.sh -------------------------------------------------------------------------------- /documentation/html_labs/lab_yp6_pipeline_bypasses/zzz_misspelled: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/html_labs_for_blog/a1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_for_blog/a1.html -------------------------------------------------------------------------------- /documentation/html_labs_for_blog/a2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_for_blog/a2.html -------------------------------------------------------------------------------- /documentation/html_labs_for_blog/a3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_for_blog/a3.html -------------------------------------------------------------------------------- /documentation/html_labs_for_blog/a4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_for_blog/a4.html -------------------------------------------------------------------------------- /documentation/html_labs_for_blog/a5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_for_blog/a5.html -------------------------------------------------------------------------------- /documentation/html_labs_for_blog/a6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_for_blog/a6.html -------------------------------------------------------------------------------- /documentation/html_labs_for_blog/convert_html_to_wordpress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_for_blog/convert_html_to_wordpress.c -------------------------------------------------------------------------------- /documentation/html_labs_in_russian/lab-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_in_russian/lab-1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_0.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_2.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_3.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_4_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_4_1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_4_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_4_2.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_4_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_4_3.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_1_5_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_1_5_4.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_5_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_5_1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_5_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_5_2.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_5_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_5_3.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_5_6.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_a.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/lab_mo1_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/r.bat -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo1_serial_loader_flow/r.sh -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_0.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_2.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_3.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_a.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo2_switchable_clock/lab_mo2_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo2_switchable_clock/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo2_switchable_clock/r.bat -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo2_switchable_clock/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo2_switchable_clock/r.sh -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_0.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_2.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_3.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_4.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo3_light_sensor/lab_mo3_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo3_light_sensor/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo3_light_sensor/r.bat -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo3_light_sensor/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo3_light_sensor/r.sh -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_0.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_2.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_3.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_4.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_5.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_a.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_b.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_c.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/lab_mo4_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/r.bat -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo4_interrupts/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo4_interrupts/r.sh -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5_0.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5_1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5_2.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5_3.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo5_cache_misses/lab_mo5_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo5_cache_misses/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo5_cache_misses/r.bat -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo5_cache_misses/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo5_cache_misses/r.sh -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6_0.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6_1.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6_2.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6_3.html -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/lab_mo6_z.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/r.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/r.bat -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo6_pipeline_bypasses/r.sh -------------------------------------------------------------------------------- /documentation/html_labs_mips_open/lab_mo_note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_labs_mips_open/lab_mo_note.html -------------------------------------------------------------------------------- /documentation/html_to_imgtec_forum_converter/html_to_imgtec_forum_converter.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_to_imgtec_forum_converter/html_to_imgtec_forum_converter.bat -------------------------------------------------------------------------------- /documentation/html_to_imgtec_forum_converter/html_to_imgtec_forum_converter.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/html_to_imgtec_forum_converter/html_to_imgtec_forum_converter.sed -------------------------------------------------------------------------------- /documentation/labs/lab_mo1_serial_loader_flow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/labs/lab_mo1_serial_loader_flow.pdf -------------------------------------------------------------------------------- /documentation/labs/lab_mo2_switchable_clock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/labs/lab_mo2_switchable_clock.pdf -------------------------------------------------------------------------------- /documentation/labs/lab_mo3_light_sensor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/labs/lab_mo3_light_sensor.pdf -------------------------------------------------------------------------------- /documentation/labs/lab_mo4_interrupts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/labs/lab_mo4_interrupts.pdf -------------------------------------------------------------------------------- /documentation/labs/lab_mo5_cache_misses.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/labs/lab_mo5_cache_misses.pdf -------------------------------------------------------------------------------- /documentation/labs/lab_mo6_pipeline_bypasses.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/labs/lab_mo6_pipeline_bypasses.pdf -------------------------------------------------------------------------------- /documentation/peripherals/20170320_mfp_EIC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/peripherals/20170320_mfp_EIC.pdf -------------------------------------------------------------------------------- /documentation/peripherals/20170612_MFP_ADC for Altera MAX10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/peripherals/20170612_MFP_ADC for Altera MAX10.pdf -------------------------------------------------------------------------------- /documentation/peripherals/UART_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/peripherals/UART_spec.pdf -------------------------------------------------------------------------------- /documentation/slides/mipsopen_developer_day_dac_2019_05_31.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/documentation/slides/mipsopen_developer_day_dac_2019_05_31.pdf -------------------------------------------------------------------------------- /exercises/module_to_use/hc_sr04_ultrasonic_distance_sensor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/exercises/module_to_use/hc_sr04_ultrasonic_distance_sensor.v -------------------------------------------------------------------------------- /exercises/module_to_use/m14k_udi_mipsfpga_ai.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/exercises/module_to_use/m14k_udi_mipsfpga_ai.v -------------------------------------------------------------------------------- /exercises/module_to_use/pmod_als_light_sensor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/exercises/module_to_use/pmod_als_light_sensor.v -------------------------------------------------------------------------------- /exercises/module_to_use/pmod_enc_rotary_encoder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/exercises/module_to_use/pmod_enc_rotary_encoder.v -------------------------------------------------------------------------------- /programs/00_counter/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/00_counter/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/00_counter/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/00_counter/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/00_counter/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/00_counter/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/00_counter/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/00_counter/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/00_counter/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/00_counter/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/00_counter/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/00_counter/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/00_counter/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/00_counter/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/00_counter/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/00_counter/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/00_counter/boot.S -------------------------------------------------------------------------------- /programs/00_counter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/00_counter/main.c -------------------------------------------------------------------------------- /programs/00_counter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/00_counter/makefile -------------------------------------------------------------------------------- /programs/00_counter/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/00_counter/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/00_counter/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/00_counter/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/00_counter/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/00_counter/program.ld -------------------------------------------------------------------------------- /programs/01_light_sensor/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/01_light_sensor/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/01_light_sensor/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/01_light_sensor/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/01_light_sensor/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/01_light_sensor/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/01_light_sensor/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/01_light_sensor/boot.S -------------------------------------------------------------------------------- /programs/01_light_sensor/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/01_light_sensor/main.c -------------------------------------------------------------------------------- /programs/01_light_sensor/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/01_light_sensor/makefile -------------------------------------------------------------------------------- /programs/01_light_sensor/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/01_light_sensor/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/01_light_sensor/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/01_light_sensor/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/01_light_sensor/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/01_light_sensor/program.ld -------------------------------------------------------------------------------- /programs/02_interrupts/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/02_interrupts/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/02_interrupts/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/02_interrupts/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/02_interrupts/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/02_interrupts/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/02_interrupts/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/02_interrupts/boot.S -------------------------------------------------------------------------------- /programs/02_interrupts/exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/02_interrupts/exceptions.S -------------------------------------------------------------------------------- /programs/02_interrupts/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/02_interrupts/main.c -------------------------------------------------------------------------------- /programs/02_interrupts/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/02_interrupts/makefile -------------------------------------------------------------------------------- /programs/02_interrupts/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/02_interrupts/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/02_interrupts/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/02_interrupts/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/02_interrupts/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/02_interrupts/program.ld -------------------------------------------------------------------------------- /programs/03_cache_misses/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/03_cache_misses/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/03_cache_misses/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/03_cache_misses/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/03_cache_misses/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/03_cache_misses/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/03_cache_misses/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/03_cache_misses/boot.S -------------------------------------------------------------------------------- /programs/03_cache_misses/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/03_cache_misses/main.c -------------------------------------------------------------------------------- /programs/03_cache_misses/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/03_cache_misses/makefile -------------------------------------------------------------------------------- /programs/03_cache_misses/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/03_cache_misses/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/03_cache_misses/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/03_cache_misses/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/03_cache_misses/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/03_cache_misses/program.ld -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/04_pipeline_bypasses/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/04_pipeline_bypasses/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/04_pipeline_bypasses/boot.S -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/04_pipeline_bypasses/main.c -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/04_pipeline_bypasses/makefile -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/04_pipeline_bypasses/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/04_pipeline_bypasses/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/04_pipeline_bypasses/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/04_pipeline_bypasses/program.ld -------------------------------------------------------------------------------- /programs/05_corextend/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/05_corextend/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/05_corextend/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/05_corextend/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/05_corextend/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/05_corextend/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/05_corextend/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/05_corextend/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/05_corextend/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/05_corextend/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/05_corextend/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/05_corextend/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/05_corextend/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/05_corextend/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/05_corextend/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/05_corextend/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/05_corextend/boot.S -------------------------------------------------------------------------------- /programs/05_corextend/corextend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/05_corextend/corextend.h -------------------------------------------------------------------------------- /programs/05_corextend/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/05_corextend/main.c -------------------------------------------------------------------------------- /programs/05_corextend/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/05_corextend/makefile -------------------------------------------------------------------------------- /programs/05_corextend/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/05_corextend/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/05_corextend/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/05_corextend/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/05_corextend/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/05_corextend/program.ld -------------------------------------------------------------------------------- /programs/06_memtest/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/06_memtest/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/06_memtest/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/06_memtest/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/06_memtest/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/06_memtest/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/06_memtest/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/06_memtest/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/06_memtest/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/06_memtest/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/06_memtest/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/06_memtest/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/06_memtest/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/06_memtest/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/06_memtest/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/06_memtest/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/06_memtest/boot.S -------------------------------------------------------------------------------- /programs/06_memtest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/06_memtest/main.c -------------------------------------------------------------------------------- /programs/06_memtest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/06_memtest/makefile -------------------------------------------------------------------------------- /programs/06_memtest/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/06_memtest/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/06_memtest/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/06_memtest/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/06_memtest/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/06_memtest/program.ld -------------------------------------------------------------------------------- /programs/07_uart/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/07_uart/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/07_uart/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/07_uart/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/07_uart/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/07_uart/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/07_uart/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/07_uart/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/07_uart/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/07_uart/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/07_uart/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/07_uart/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/07_uart/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/07_uart/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/07_uart/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/07_uart/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/07_uart/boot.S -------------------------------------------------------------------------------- /programs/07_uart/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/07_uart/main.c -------------------------------------------------------------------------------- /programs/07_uart/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/07_uart/makefile -------------------------------------------------------------------------------- /programs/07_uart/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/07_uart/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/07_uart/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/07_uart/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/07_uart/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/07_uart/program.ld -------------------------------------------------------------------------------- /programs/07_uart/uart16550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/07_uart/uart16550.h -------------------------------------------------------------------------------- /programs/08_timer_irq/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/08_timer_irq/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/08_timer_irq/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/08_timer_irq/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/08_timer_irq/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/08_timer_irq/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/08_timer_irq/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/08_timer_irq/boot.S -------------------------------------------------------------------------------- /programs/08_timer_irq/exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/08_timer_irq/exceptions.S -------------------------------------------------------------------------------- /programs/08_timer_irq/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/08_timer_irq/main.c -------------------------------------------------------------------------------- /programs/08_timer_irq/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/08_timer_irq/makefile -------------------------------------------------------------------------------- /programs/08_timer_irq/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/08_timer_irq/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/08_timer_irq/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/08_timer_irq/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/08_timer_irq/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/08_timer_irq/program.ld -------------------------------------------------------------------------------- /programs/09_eic/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/09_eic/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/09_eic/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/09_eic/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/09_eic/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/09_eic/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/09_eic/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/09_eic/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/09_eic/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/09_eic/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/09_eic/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/09_eic/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/09_eic/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/09_eic/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/boot.S -------------------------------------------------------------------------------- /programs/09_eic/eic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/eic.h -------------------------------------------------------------------------------- /programs/09_eic/exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/exceptions.S -------------------------------------------------------------------------------- /programs/09_eic/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/main.c -------------------------------------------------------------------------------- /programs/09_eic/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/makefile -------------------------------------------------------------------------------- /programs/09_eic/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/09_eic/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/09_eic/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/09_eic/program.ld -------------------------------------------------------------------------------- /programs/10_uart_irq/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/10_uart_irq/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/10_uart_irq/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/10_uart_irq/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/10_uart_irq/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/boot.S -------------------------------------------------------------------------------- /programs/10_uart_irq/exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/exceptions.S -------------------------------------------------------------------------------- /programs/10_uart_irq/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/main.c -------------------------------------------------------------------------------- /programs/10_uart_irq/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/makefile -------------------------------------------------------------------------------- /programs/10_uart_irq/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/10_uart_irq/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/10_uart_irq/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/program.ld -------------------------------------------------------------------------------- /programs/10_uart_irq/uart16550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/10_uart_irq/uart16550.h -------------------------------------------------------------------------------- /programs/11_adc/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /programs/11_adc/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /programs/11_adc/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /programs/11_adc/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /programs/11_adc/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /programs/11_adc/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /programs/11_adc/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /programs/11_adc/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /programs/11_adc/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /programs/11_adc/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /programs/11_adc/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /programs/11_adc/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /programs/11_adc/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /programs/11_adc/adc_m10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/adc_m10.h -------------------------------------------------------------------------------- /programs/11_adc/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/boot.S -------------------------------------------------------------------------------- /programs/11_adc/exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/exceptions.S -------------------------------------------------------------------------------- /programs/11_adc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/main.c -------------------------------------------------------------------------------- /programs/11_adc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/makefile -------------------------------------------------------------------------------- /programs/11_adc/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/11_adc/modelsim_script.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/modelsim_script.tcl -------------------------------------------------------------------------------- /programs/11_adc/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/11_adc/program.ld -------------------------------------------------------------------------------- /programs/12_linux/.gitignore: -------------------------------------------------------------------------------- 1 | kernel/ 2 | buildroot/ 3 | *.log 4 | -------------------------------------------------------------------------------- /programs/12_linux/00_upload_presaved_image.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/00_upload_presaved_image.bat -------------------------------------------------------------------------------- /programs/12_linux/00_upload_presaved_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/00_upload_presaved_image.sh -------------------------------------------------------------------------------- /programs/12_linux/01_upload_compiled_image.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/01_upload_compiled_image.bat -------------------------------------------------------------------------------- /programs/12_linux/01_upload_compiled_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/01_upload_compiled_image.sh -------------------------------------------------------------------------------- /programs/12_linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/README.md -------------------------------------------------------------------------------- /programs/12_linux/image/vmlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/image/vmlinux -------------------------------------------------------------------------------- /programs/12_linux/image/vmlinuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/image/vmlinuz -------------------------------------------------------------------------------- /programs/12_linux/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/makefile -------------------------------------------------------------------------------- /programs/12_linux/patches/MIPSfpga_buildroot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/patches/MIPSfpga_buildroot.patch -------------------------------------------------------------------------------- /programs/12_linux/patches/MIPSfpga_linux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/12_linux/patches/MIPSfpga_linux.patch -------------------------------------------------------------------------------- /programs/13_new_boot/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/boot.S -------------------------------------------------------------------------------- /programs/13_new_boot/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/crt0.S -------------------------------------------------------------------------------- /programs/13_new_boot/dummy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/dummy.S -------------------------------------------------------------------------------- /programs/13_new_boot/exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/exceptions.S -------------------------------------------------------------------------------- /programs/13_new_boot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/main.c -------------------------------------------------------------------------------- /programs/13_new_boot/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/main.s -------------------------------------------------------------------------------- /programs/13_new_boot/main1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/main1.c -------------------------------------------------------------------------------- /programs/13_new_boot/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/makefile -------------------------------------------------------------------------------- /programs/13_new_boot/mfp_memory_mapped_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/mfp_memory_mapped_registers.h -------------------------------------------------------------------------------- /programs/13_new_boot/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/13_new_boot/runme.sh -------------------------------------------------------------------------------- /programs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/README.md -------------------------------------------------------------------------------- /programs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/programs/makefile -------------------------------------------------------------------------------- /scripts/load/board/mfp_busblaster.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/load/board/mfp_busblaster.cfg -------------------------------------------------------------------------------- /scripts/load/board/mfp_mpsse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/load/board/mfp_mpsse.cfg -------------------------------------------------------------------------------- /scripts/load/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/load/openocd.cfg -------------------------------------------------------------------------------- /scripts/load/udev_rules/99-busblaster.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/load/udev_rules/99-busblaster.rules -------------------------------------------------------------------------------- /scripts/make_wrappers/board/make_project.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/make_wrappers/board/make_project.bat -------------------------------------------------------------------------------- /scripts/make_wrappers/board/make_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/make_wrappers/board/make_project.sh -------------------------------------------------------------------------------- /scripts/make_wrappers/program/00_clean_all.bat: -------------------------------------------------------------------------------- 1 | make clean 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/00_clean_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make clean 4 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/01_compile_c_to_assembly.bat: -------------------------------------------------------------------------------- 1 | make compile 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/01_compile_c_to_assembly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make compile 4 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/02_compile_and_link.bat: -------------------------------------------------------------------------------- 1 | make program 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/02_compile_and_link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make program 4 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/03_check_program_size.bat: -------------------------------------------------------------------------------- 1 | make size 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/03_check_program_size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make size 4 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/04_disassemble.bat: -------------------------------------------------------------------------------- 1 | make disasm 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/04_disassemble.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make disasm 4 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/05_generate_verilog_readmemh_file.bat: -------------------------------------------------------------------------------- 1 | make readmemh 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/05_generate_verilog_readmemh_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make readmemh 4 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/06_simulate_with_modelsim.bat: -------------------------------------------------------------------------------- 1 | make modelsim 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/06_simulate_with_modelsim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make modelsim -------------------------------------------------------------------------------- /scripts/make_wrappers/program/07_simulate_with_icarus.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/make_wrappers/program/07_simulate_with_icarus.bat -------------------------------------------------------------------------------- /scripts/make_wrappers/program/07_simulate_with_icarus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/make_wrappers/program/07_simulate_with_icarus.sh -------------------------------------------------------------------------------- /scripts/make_wrappers/program/08_generate_motorola_s_record_file.bat: -------------------------------------------------------------------------------- 1 | make srecord 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/08_generate_motorola_s_record_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make srecord 4 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/09_check_which_com_port_is_used.bat: -------------------------------------------------------------------------------- 1 | mode 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/10_upload_to_the_board_using_uart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/make_wrappers/program/10_upload_to_the_board_using_uart.bat -------------------------------------------------------------------------------- /scripts/make_wrappers/program/10_upload_to_the_board_using_uart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/make_wrappers/program/10_upload_to_the_board_using_uart.sh -------------------------------------------------------------------------------- /scripts/make_wrappers/program/11_upload_to_the_board.bat: -------------------------------------------------------------------------------- 1 | make load 2 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/11_upload_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make load 4 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/12_debug_on_the_board.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/make_wrappers/program/12_debug_on_the_board.bat -------------------------------------------------------------------------------- /scripts/make_wrappers/program/12_debug_on_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make debug 4 | -------------------------------------------------------------------------------- /scripts/make_wrappers/program/13_attach_to_the_board.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/make_wrappers/program/13_attach_to_the_board.bat -------------------------------------------------------------------------------- /scripts/make_wrappers/program/13_attach_to_the_board.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make attach 4 | -------------------------------------------------------------------------------- /scripts/release/release_now.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/release/release_now.bash -------------------------------------------------------------------------------- /scripts/utilities/ad_hoc_program_hex_splitter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/utilities/ad_hoc_program_hex_splitter -------------------------------------------------------------------------------- /scripts/utilities/ad_hoc_program_hex_splitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/utilities/ad_hoc_program_hex_splitter.c -------------------------------------------------------------------------------- /scripts/utilities/ad_hoc_program_hex_splitter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/utilities/ad_hoc_program_hex_splitter.exe -------------------------------------------------------------------------------- /scripts/utilities/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/utilities/build.bat -------------------------------------------------------------------------------- /scripts/vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /scripts/vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/scripts/vscode/launch.json -------------------------------------------------------------------------------- /system_rtl/mfp_adc_max10_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_adc_max10_core.v -------------------------------------------------------------------------------- /system_rtl/mfp_adc_max10_core.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_adc_max10_core.vh -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_gpio_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_gpio_slave.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_lite.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_lite.vh -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_lite_adc_max10.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_lite_adc_max10.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_lite_eic.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_lite_eic.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_lite_matrix.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_lite_matrix.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_lite_matrix_config.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_lite_matrix_config.vh -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_lite_matrix_with_loader.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_lite_matrix_with_loader.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_lite_pmod_als.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_lite_pmod_als.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_lite_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_lite_slave.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_lite_uart16550.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_lite_uart16550.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_ram_busy.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_ram_busy.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_ram_sdram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_ram_sdram.v -------------------------------------------------------------------------------- /system_rtl/mfp_ahb_ram_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_ahb_ram_slave.v -------------------------------------------------------------------------------- /system_rtl/mfp_clock_dividers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_clock_dividers.v -------------------------------------------------------------------------------- /system_rtl/mfp_dual_port_ram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_dual_port_ram.v -------------------------------------------------------------------------------- /system_rtl/mfp_eic_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_eic_core.v -------------------------------------------------------------------------------- /system_rtl/mfp_eic_core.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_eic_core.vh -------------------------------------------------------------------------------- /system_rtl/mfp_eic_handler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_eic_handler.v -------------------------------------------------------------------------------- /system_rtl/mfp_pmod_als_spi_receiver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_pmod_als_spi_receiver.v -------------------------------------------------------------------------------- /system_rtl/mfp_priority_encoder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_priority_encoder.v -------------------------------------------------------------------------------- /system_rtl/mfp_register.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_register.v -------------------------------------------------------------------------------- /system_rtl/mfp_seven_segment_displays.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_seven_segment_displays.v -------------------------------------------------------------------------------- /system_rtl/mfp_srec_parser.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_srec_parser.v -------------------------------------------------------------------------------- /system_rtl/mfp_srec_parser_to_ahb_lite_bridge.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_srec_parser_to_ahb_lite_bridge.v -------------------------------------------------------------------------------- /system_rtl/mfp_switch_and_button_debouncers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_switch_and_button_debouncers.v -------------------------------------------------------------------------------- /system_rtl/mfp_system.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_system.v -------------------------------------------------------------------------------- /system_rtl/mfp_uart_loader.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_uart_loader.v -------------------------------------------------------------------------------- /system_rtl/mfp_uart_receiver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/mfp_uart_receiver.v -------------------------------------------------------------------------------- /system_rtl/uart16550/raminfr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/uart16550/raminfr.v -------------------------------------------------------------------------------- /system_rtl/uart16550/uart_defines.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/uart16550/uart_defines.vh -------------------------------------------------------------------------------- /system_rtl/uart16550/uart_receiver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/uart16550/uart_receiver.v -------------------------------------------------------------------------------- /system_rtl/uart16550/uart_regs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/uart16550/uart_regs.v -------------------------------------------------------------------------------- /system_rtl/uart16550/uart_rfifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/uart16550/uart_rfifo.v -------------------------------------------------------------------------------- /system_rtl/uart16550/uart_sync_flops.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/uart16550/uart_sync_flops.v -------------------------------------------------------------------------------- /system_rtl/uart16550/uart_tfifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/uart16550/uart_tfifo.v -------------------------------------------------------------------------------- /system_rtl/uart16550/uart_transmitter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/system_rtl/uart16550/uart_transmitter.v -------------------------------------------------------------------------------- /testbench/adc_max10/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/adc_max10/README -------------------------------------------------------------------------------- /testbench/adc_max10/adc_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/adc_max10/adc_core.v -------------------------------------------------------------------------------- /testbench/adc_max10/adc_core_modular_adc_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/adc_max10/adc_core_modular_adc_0.v -------------------------------------------------------------------------------- /testbench/adc_max10/altera_modular_adc_control.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/adc_max10/altera_modular_adc_control.v -------------------------------------------------------------------------------- /testbench/adc_max10/altera_modular_adc_control_avrg_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/adc_max10/altera_modular_adc_control_avrg_fifo.v -------------------------------------------------------------------------------- /testbench/adc_max10/altera_modular_adc_control_fsm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/adc_max10/altera_modular_adc_control_fsm.v -------------------------------------------------------------------------------- /testbench/adc_max10/chsel_code_converter_sw_to_hw.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/adc_max10/chsel_code_converter_sw_to_hw.v -------------------------------------------------------------------------------- /testbench/adc_max10/fiftyfivenm_adcblock_primitive_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/adc_max10/fiftyfivenm_adcblock_primitive_wrapper.v -------------------------------------------------------------------------------- /testbench/adc_max10/fiftyfivenm_adcblock_top_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/adc_max10/fiftyfivenm_adcblock_top_wrapper.v -------------------------------------------------------------------------------- /testbench/mfp_testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/mfp_testbench.v -------------------------------------------------------------------------------- /testbench/mfp_uart_testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/mfp_uart_testbench.v -------------------------------------------------------------------------------- /testbench/sdr_sdram/sdr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/sdr_sdram/sdr.v -------------------------------------------------------------------------------- /testbench/sdr_sdram/sdr_parameters.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIPSfpga/mipsfpga-plus/HEAD/testbench/sdr_sdram/sdr_parameters.vh --------------------------------------------------------------------------------