├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── kotlinc.xml ├── libraries-with-intellij-classes.xml ├── libraries │ ├── KotlinJavaRuntime.xml │ ├── de_brudaswen_kotlinx_coroutines_kotlinx_coroutines_swt_1_0_0.xml │ ├── org_antlr_antlr4_runtime_4_8_1.xml │ └── org_jetbrains_kotlinx_kotlinx_coroutines_core.xml ├── misc.xml ├── uiDesigner.xml └── vcs.xml ├── LICENSE.txt ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib ├── antlr4-runtime-4.8-1-javadoc.jar ├── antlr4-runtime-4.8-1-sources.jar ├── antlr4-runtime-4.8-1.jar ├── kotlinx-coroutines-core-1.3.9-javadoc.jar ├── kotlinx-coroutines-core-1.3.9.jar ├── kotlinx-coroutines-swt-1.0.0.jar ├── swt-linux.jar ├── swt-windows.jar └── yad2xxJava-1.0.jar ├── library ├── base │ ├── alchitry-au-plus │ │ ├── Lucid │ │ │ ├── Base Project │ │ │ │ ├── Base Project.alp │ │ │ │ └── source │ │ │ │ │ └── au_plus_top.luc │ │ │ ├── Blinker Demo │ │ │ │ ├── Blinker Demo.alp │ │ │ │ └── source │ │ │ │ │ ├── au_plus_top.luc │ │ │ │ │ └── blinker.luc │ │ │ ├── Hello RAM │ │ │ │ ├── Hello RAM.alp │ │ │ │ └── source │ │ │ │ │ ├── au_plus_top.luc │ │ │ │ │ └── greeter.luc │ │ │ ├── Hello World │ │ │ │ ├── Hello World.alp │ │ │ │ └── source │ │ │ │ │ ├── au_plus_top.luc │ │ │ │ │ ├── greeter.luc │ │ │ │ │ └── hello_world_rom.luc │ │ │ ├── IO Element Base │ │ │ │ ├── IO Element Base.alp │ │ │ │ └── source │ │ │ │ │ └── au_plus_top.luc │ │ │ ├── IO Element Demo │ │ │ │ ├── IO Element Demo.alp │ │ │ │ └── source │ │ │ │ │ ├── au_plus_top.luc │ │ │ │ │ ├── decimal_counter.luc │ │ │ │ │ ├── multi_dec_ctr.luc │ │ │ │ │ ├── multi_seven_seg.luc │ │ │ │ │ └── seven_seg.luc │ │ │ ├── LED to Button │ │ │ │ ├── LED to Button.alp │ │ │ │ └── source │ │ │ │ │ └── au_plus_top.luc │ │ │ └── projects.xml │ │ └── Verilog │ │ │ ├── Base Project │ │ │ ├── Base Project.alp │ │ │ └── source │ │ │ │ └── au_plus_top.v │ │ │ └── projects.xml │ ├── alchitry-au │ │ ├── Lucid │ │ │ ├── Base Project │ │ │ │ ├── Base Project.alp │ │ │ │ └── source │ │ │ │ │ └── au_top.luc │ │ │ ├── Blinker Demo │ │ │ │ ├── Blinker Demo.alp │ │ │ │ └── source │ │ │ │ │ ├── au_top.luc │ │ │ │ │ └── blinker.luc │ │ │ ├── Hello RAM │ │ │ │ ├── Hello RAM.alp │ │ │ │ └── source │ │ │ │ │ ├── au_top.luc │ │ │ │ │ └── greeter.luc │ │ │ ├── Hello World │ │ │ │ ├── Hello World.alp │ │ │ │ └── source │ │ │ │ │ ├── au_top.luc │ │ │ │ │ ├── greeter.luc │ │ │ │ │ └── hello_world_rom.luc │ │ │ ├── IO Element Base │ │ │ │ ├── IO Element Base.alp │ │ │ │ └── source │ │ │ │ │ └── au_top.luc │ │ │ ├── IO Element Demo │ │ │ │ ├── IO Element Demo.alp │ │ │ │ └── source │ │ │ │ │ ├── au_top.luc │ │ │ │ │ ├── decimal_counter.luc │ │ │ │ │ ├── multi_dec_ctr.luc │ │ │ │ │ ├── multi_seven_seg.luc │ │ │ │ │ └── seven_seg.luc │ │ │ ├── LED to Button │ │ │ │ ├── LED to Button.alp │ │ │ │ └── source │ │ │ │ │ └── au_top.luc │ │ │ └── projects.xml │ │ └── Verilog │ │ │ ├── Base Project │ │ │ ├── Base Project.alp │ │ │ └── source │ │ │ │ └── au_top.v │ │ │ └── projects.xml │ ├── alchitry-cu │ │ ├── Lucid │ │ │ ├── Base Project │ │ │ │ ├── Base Project.alp │ │ │ │ └── source │ │ │ │ │ └── cu_top.luc │ │ │ ├── Blinker Demo │ │ │ │ ├── Blinker Demo.alp │ │ │ │ └── source │ │ │ │ │ ├── blinker.luc │ │ │ │ │ └── cu_top.luc │ │ │ ├── Hello RAM │ │ │ │ ├── Hello RAM.alp │ │ │ │ └── source │ │ │ │ │ ├── cu_top.luc │ │ │ │ │ └── greeter.luc │ │ │ ├── Hello World │ │ │ │ ├── Hello World.alp │ │ │ │ └── source │ │ │ │ │ ├── cu_top.luc │ │ │ │ │ ├── greeter.luc │ │ │ │ │ └── hello_world_rom.luc │ │ │ ├── IO Element Base │ │ │ │ ├── IO Element Base.alp │ │ │ │ └── source │ │ │ │ │ └── cu_top.luc │ │ │ ├── IO Element Demo │ │ │ │ ├── IO Element Demo.alp │ │ │ │ └── source │ │ │ │ │ ├── cu_top.luc │ │ │ │ │ ├── decimal_counter.luc │ │ │ │ │ ├── multi_dec_ctr.luc │ │ │ │ │ ├── multi_seven_seg.luc │ │ │ │ │ └── seven_seg.luc │ │ │ ├── LED to Button │ │ │ │ ├── LED to Button.alp │ │ │ │ └── source │ │ │ │ │ └── cu_top.luc │ │ │ └── projects.xml │ │ └── Verilog │ │ │ ├── Base Project │ │ │ ├── Base Project.alp │ │ │ └── source │ │ │ │ └── cu_top.v │ │ │ └── projects.xml │ ├── mojo │ │ ├── Lucid │ │ │ ├── AVR Interface │ │ │ │ ├── AVR Interface.alp │ │ │ │ └── source │ │ │ │ │ └── mojo_top.luc │ │ │ ├── Analog Inputs │ │ │ │ ├── Analog Inputs.alp │ │ │ │ └── source │ │ │ │ │ ├── adc_to_leds.luc │ │ │ │ │ └── mojo_top.luc │ │ │ ├── Base Project │ │ │ │ ├── Base Project.alp │ │ │ │ └── source │ │ │ │ │ └── mojo_top.luc │ │ │ ├── Basic CPU │ │ │ │ ├── Basic CPU.alp │ │ │ │ └── source │ │ │ │ │ ├── cpu.luc │ │ │ │ │ ├── instRom.luc │ │ │ │ │ └── mojo_top.luc │ │ │ ├── Blinker Demo │ │ │ │ ├── Blinker Demo.alp │ │ │ │ └── source │ │ │ │ │ ├── blinker.luc │ │ │ │ │ └── mojo_top.luc │ │ │ ├── Camera to HDMI │ │ │ │ ├── Camera to HDMI.alp │ │ │ │ ├── coreGen │ │ │ │ │ ├── clk_gen.asy │ │ │ │ │ ├── clk_gen.gise │ │ │ │ │ ├── clk_gen.ucf │ │ │ │ │ ├── clk_gen.v │ │ │ │ │ ├── clk_gen.veo │ │ │ │ │ ├── clk_gen.xco │ │ │ │ │ ├── clk_gen.xdc │ │ │ │ │ ├── clk_gen.xise │ │ │ │ │ ├── clk_gen │ │ │ │ │ │ ├── clk_wiz_v3_6_readme.txt │ │ │ │ │ │ ├── example_design │ │ │ │ │ │ │ ├── clk_gen_exdes.ucf │ │ │ │ │ │ │ ├── clk_gen_exdes.v │ │ │ │ │ │ │ └── clk_gen_exdes.xdc │ │ │ │ │ │ ├── implement │ │ │ │ │ │ │ ├── implement.bat │ │ │ │ │ │ │ ├── implement.sh │ │ │ │ │ │ │ ├── planAhead_ise.bat │ │ │ │ │ │ │ ├── planAhead_ise.sh │ │ │ │ │ │ │ ├── planAhead_ise.tcl │ │ │ │ │ │ │ ├── planAhead_rdn.bat │ │ │ │ │ │ │ ├── planAhead_rdn.sh │ │ │ │ │ │ │ ├── planAhead_rdn.tcl │ │ │ │ │ │ │ ├── xst.prj │ │ │ │ │ │ │ └── xst.scr │ │ │ │ │ │ └── simulation │ │ │ │ │ │ │ ├── clk_gen_tb.v │ │ │ │ │ │ │ ├── functional │ │ │ │ │ │ │ ├── simcmds.tcl │ │ │ │ │ │ │ ├── simulate_isim.bat │ │ │ │ │ │ │ ├── simulate_isim.sh │ │ │ │ │ │ │ ├── simulate_mti.bat │ │ │ │ │ │ │ ├── simulate_mti.do │ │ │ │ │ │ │ ├── simulate_mti.sh │ │ │ │ │ │ │ ├── simulate_ncsim.sh │ │ │ │ │ │ │ ├── simulate_vcs.sh │ │ │ │ │ │ │ ├── ucli_commands.key │ │ │ │ │ │ │ ├── vcs_session.tcl │ │ │ │ │ │ │ ├── wave.do │ │ │ │ │ │ │ └── wave.sv │ │ │ │ │ │ │ └── timing │ │ │ │ │ │ │ ├── clk_gen_tb.v │ │ │ │ │ │ │ ├── sdf_cmd_file │ │ │ │ │ │ │ ├── simcmds.tcl │ │ │ │ │ │ │ ├── simulate_isim.sh │ │ │ │ │ │ │ ├── simulate_mti.bat │ │ │ │ │ │ │ ├── simulate_mti.do │ │ │ │ │ │ │ ├── simulate_mti.sh │ │ │ │ │ │ │ ├── simulate_ncsim.sh │ │ │ │ │ │ │ ├── simulate_vcs.sh │ │ │ │ │ │ │ ├── ucli_commands.key │ │ │ │ │ │ │ ├── vcs_session.tcl │ │ │ │ │ │ │ └── wave.do │ │ │ │ │ ├── clk_gen_flist.txt │ │ │ │ │ ├── clk_gen_xmdf.tcl │ │ │ │ │ ├── coregen.cgc │ │ │ │ │ └── coregen.cgp │ │ │ │ └── source │ │ │ │ │ ├── img_capture.luc │ │ │ │ │ ├── mem_to_hdmi.luc │ │ │ │ │ └── mojo_top.luc │ │ │ ├── External IO │ │ │ │ ├── External IO.alp │ │ │ │ ├── constraint │ │ │ │ │ └── custom.ucf │ │ │ │ └── source │ │ │ │ │ ├── counter.luc │ │ │ │ │ └── mojo_top.luc │ │ │ ├── Hello RAM │ │ │ │ ├── Hello RAM.alp │ │ │ │ └── source │ │ │ │ │ ├── greeter.luc │ │ │ │ │ └── mojo_top.luc │ │ │ ├── Hello World │ │ │ │ ├── Hello World.alp │ │ │ │ └── source │ │ │ │ │ ├── greeter.luc │ │ │ │ │ ├── hello_world_rom.luc │ │ │ │ │ └── mojo_top.luc │ │ │ ├── IO Shield Base │ │ │ │ ├── IO Shield Base.alp │ │ │ │ └── source │ │ │ │ │ └── mojo_top.luc │ │ │ ├── IO Shield Demo │ │ │ │ ├── IO Shield Demo.alp │ │ │ │ └── source │ │ │ │ │ ├── decimal_counter.luc │ │ │ │ │ ├── mojo_top.luc │ │ │ │ │ ├── multi_dec_ctr.luc │ │ │ │ │ ├── multi_seven_seg.luc │ │ │ │ │ └── seven_seg.luc │ │ │ ├── Image Capture │ │ │ │ ├── Image Capture.alp │ │ │ │ ├── coreGen │ │ │ │ │ ├── clk_wiz.asy │ │ │ │ │ ├── clk_wiz.gise │ │ │ │ │ ├── clk_wiz.ucf │ │ │ │ │ ├── clk_wiz.v │ │ │ │ │ ├── clk_wiz.veo │ │ │ │ │ ├── clk_wiz.xco │ │ │ │ │ ├── clk_wiz.xdc │ │ │ │ │ ├── clk_wiz.xise │ │ │ │ │ ├── clk_wiz │ │ │ │ │ │ ├── clk_wiz_v3_6_readme.txt │ │ │ │ │ │ ├── example_design │ │ │ │ │ │ │ ├── clk_wiz_exdes.ucf │ │ │ │ │ │ │ ├── clk_wiz_exdes.v │ │ │ │ │ │ │ └── clk_wiz_exdes.xdc │ │ │ │ │ │ ├── implement │ │ │ │ │ │ │ ├── implement.bat │ │ │ │ │ │ │ ├── implement.sh │ │ │ │ │ │ │ ├── planAhead_ise.bat │ │ │ │ │ │ │ ├── planAhead_ise.sh │ │ │ │ │ │ │ ├── planAhead_ise.tcl │ │ │ │ │ │ │ ├── planAhead_rdn.bat │ │ │ │ │ │ │ ├── planAhead_rdn.sh │ │ │ │ │ │ │ ├── planAhead_rdn.tcl │ │ │ │ │ │ │ ├── xst.prj │ │ │ │ │ │ │ └── xst.scr │ │ │ │ │ │ └── simulation │ │ │ │ │ │ │ ├── clk_wiz_tb.v │ │ │ │ │ │ │ ├── functional │ │ │ │ │ │ │ ├── simcmds.tcl │ │ │ │ │ │ │ ├── simulate_isim.bat │ │ │ │ │ │ │ ├── simulate_isim.sh │ │ │ │ │ │ │ ├── simulate_mti.bat │ │ │ │ │ │ │ ├── simulate_mti.do │ │ │ │ │ │ │ ├── simulate_mti.sh │ │ │ │ │ │ │ ├── simulate_ncsim.sh │ │ │ │ │ │ │ ├── simulate_vcs.sh │ │ │ │ │ │ │ ├── ucli_commands.key │ │ │ │ │ │ │ ├── vcs_session.tcl │ │ │ │ │ │ │ ├── wave.do │ │ │ │ │ │ │ └── wave.sv │ │ │ │ │ │ │ └── timing │ │ │ │ │ │ │ ├── clk_wiz_tb.v │ │ │ │ │ │ │ ├── sdf_cmd_file │ │ │ │ │ │ │ ├── simcmds.tcl │ │ │ │ │ │ │ ├── simulate_isim.sh │ │ │ │ │ │ │ ├── simulate_mti.bat │ │ │ │ │ │ │ ├── simulate_mti.do │ │ │ │ │ │ │ ├── simulate_mti.sh │ │ │ │ │ │ │ ├── simulate_ncsim.sh │ │ │ │ │ │ │ ├── simulate_vcs.sh │ │ │ │ │ │ │ ├── ucli_commands.key │ │ │ │ │ │ │ ├── vcs_session.tcl │ │ │ │ │ │ │ └── wave.do │ │ │ │ │ ├── clk_wiz_flist.txt │ │ │ │ │ ├── clk_wiz_xmdf.tcl │ │ │ │ │ ├── coregen.cgc │ │ │ │ │ └── coregen.cgp │ │ │ │ └── source │ │ │ │ │ ├── img_capture.luc │ │ │ │ │ ├── mojo_top.luc │ │ │ │ │ └── ram_to_reg.luc │ │ │ ├── LED to Button │ │ │ │ ├── LED to Button.alp │ │ │ │ └── source │ │ │ │ │ └── mojo_top.luc │ │ │ ├── Reg Interface │ │ │ │ ├── Reg Interface.alp │ │ │ │ └── source │ │ │ │ │ └── mojo_top.luc │ │ │ ├── SDRAM Tester │ │ │ │ ├── SDRAM Tester.alp │ │ │ │ ├── coreGen │ │ │ │ │ ├── _xmsgs │ │ │ │ │ │ └── pn_parser.xmsgs │ │ │ │ │ ├── clk_wiz.asy │ │ │ │ │ ├── clk_wiz.gise │ │ │ │ │ ├── clk_wiz.ucf │ │ │ │ │ ├── clk_wiz.v │ │ │ │ │ ├── clk_wiz.veo │ │ │ │ │ ├── clk_wiz.xco │ │ │ │ │ ├── clk_wiz.xdc │ │ │ │ │ ├── clk_wiz.xise │ │ │ │ │ ├── clk_wiz │ │ │ │ │ │ ├── clk_wiz_v3_6_readme.txt │ │ │ │ │ │ ├── example_design │ │ │ │ │ │ │ ├── clk_wiz_exdes.ucf │ │ │ │ │ │ │ ├── clk_wiz_exdes.v │ │ │ │ │ │ │ └── clk_wiz_exdes.xdc │ │ │ │ │ │ ├── implement │ │ │ │ │ │ │ ├── implement.bat │ │ │ │ │ │ │ ├── implement.sh │ │ │ │ │ │ │ ├── planAhead_ise.bat │ │ │ │ │ │ │ ├── planAhead_ise.sh │ │ │ │ │ │ │ ├── planAhead_ise.tcl │ │ │ │ │ │ │ ├── planAhead_rdn.bat │ │ │ │ │ │ │ ├── planAhead_rdn.sh │ │ │ │ │ │ │ ├── planAhead_rdn.tcl │ │ │ │ │ │ │ ├── xst.prj │ │ │ │ │ │ │ └── xst.scr │ │ │ │ │ │ └── simulation │ │ │ │ │ │ │ ├── clk_wiz_tb.v │ │ │ │ │ │ │ ├── functional │ │ │ │ │ │ │ ├── simcmds.tcl │ │ │ │ │ │ │ ├── simulate_isim.bat │ │ │ │ │ │ │ ├── simulate_isim.sh │ │ │ │ │ │ │ ├── simulate_mti.bat │ │ │ │ │ │ │ ├── simulate_mti.do │ │ │ │ │ │ │ ├── simulate_mti.sh │ │ │ │ │ │ │ ├── simulate_ncsim.sh │ │ │ │ │ │ │ ├── simulate_vcs.sh │ │ │ │ │ │ │ ├── ucli_commands.key │ │ │ │ │ │ │ ├── vcs_session.tcl │ │ │ │ │ │ │ ├── wave.do │ │ │ │ │ │ │ └── wave.sv │ │ │ │ │ │ │ └── timing │ │ │ │ │ │ │ ├── clk_wiz_tb.v │ │ │ │ │ │ │ ├── sdf_cmd_file │ │ │ │ │ │ │ ├── simcmds.tcl │ │ │ │ │ │ │ ├── simulate_isim.sh │ │ │ │ │ │ │ ├── simulate_mti.bat │ │ │ │ │ │ │ ├── simulate_mti.do │ │ │ │ │ │ │ ├── simulate_mti.sh │ │ │ │ │ │ │ ├── simulate_ncsim.sh │ │ │ │ │ │ │ ├── simulate_vcs.sh │ │ │ │ │ │ │ ├── ucli_commands.key │ │ │ │ │ │ │ ├── vcs_session.tcl │ │ │ │ │ │ │ └── wave.do │ │ │ │ │ ├── clk_wiz_flist.txt │ │ │ │ │ ├── clk_wiz_xmdf.tcl │ │ │ │ │ ├── coregen.cgc │ │ │ │ │ ├── coregen.cgp │ │ │ │ │ └── customization_gui.0.314470607934.out │ │ │ │ └── source │ │ │ │ │ ├── mojo_top.luc │ │ │ │ │ └── ram_test.luc │ │ │ ├── Serial Port Echo │ │ │ │ ├── Serial Port Echo.alp │ │ │ │ └── source │ │ │ │ │ └── mojo_top.luc │ │ │ ├── Sound Locator │ │ │ │ ├── Sound Locator.alp │ │ │ │ ├── constraint │ │ │ │ │ ├── debug.ucf │ │ │ │ │ └── mic_shield.ucf │ │ │ │ ├── coreGen │ │ │ │ │ ├── _xmsgs │ │ │ │ │ │ └── xst.xmsgs │ │ │ │ │ ├── coregen.cgc │ │ │ │ │ ├── coregen.cgp │ │ │ │ │ ├── decimation_filter.asy │ │ │ │ │ ├── decimation_filter.gise │ │ │ │ │ ├── decimation_filter.lso │ │ │ │ │ ├── decimation_filter.ngc │ │ │ │ │ ├── decimation_filter.v │ │ │ │ │ ├── decimation_filter.veo │ │ │ │ │ ├── decimation_filter.xco │ │ │ │ │ ├── decimation_filter.xise │ │ │ │ │ ├── decimation_filter_flist.txt │ │ │ │ │ ├── decimation_filter_xmdf.tcl │ │ │ │ │ ├── demo_tb │ │ │ │ │ │ ├── tb_decimation_filter.vhd │ │ │ │ │ │ ├── tb_fir_filter.vhd │ │ │ │ │ │ ├── tb_mag_phase_calculator.vhd │ │ │ │ │ │ ├── tb_phase_calculator.vhd │ │ │ │ │ │ └── tb_xfft_v8_0.vhd │ │ │ │ │ ├── mag_phase_calculator.asy │ │ │ │ │ ├── mag_phase_calculator.gise │ │ │ │ │ ├── mag_phase_calculator.ngc │ │ │ │ │ ├── mag_phase_calculator.v │ │ │ │ │ ├── mag_phase_calculator.veo │ │ │ │ │ ├── mag_phase_calculator.xco │ │ │ │ │ ├── mag_phase_calculator.xise │ │ │ │ │ ├── mag_phase_calculator_flist.txt │ │ │ │ │ ├── mag_phase_calculator_xmdf.tcl │ │ │ │ │ ├── xfft_v8_0.asy │ │ │ │ │ ├── xfft_v8_0.gise │ │ │ │ │ ├── xfft_v8_0.ngc │ │ │ │ │ ├── xfft_v8_0.v │ │ │ │ │ ├── xfft_v8_0.veo │ │ │ │ │ ├── xfft_v8_0.xco │ │ │ │ │ ├── xfft_v8_0.xise │ │ │ │ │ ├── xfft_v8_0 │ │ │ │ │ │ └── cmodel │ │ │ │ │ │ │ ├── xfft_v8_0_bitacc_cmodel_lin.zip │ │ │ │ │ │ │ ├── xfft_v8_0_bitacc_cmodel_lin64.zip │ │ │ │ │ │ │ ├── xfft_v8_0_bitacc_cmodel_nt.zip │ │ │ │ │ │ │ └── xfft_v8_0_bitacc_cmodel_nt64.zip │ │ │ │ │ ├── xfft_v8_0_flist.txt │ │ │ │ │ └── xfft_v8_0_xmdf.tcl │ │ │ │ └── source │ │ │ │ │ ├── hann_rom.luc │ │ │ │ │ ├── led_ring.luc │ │ │ │ │ ├── mojo_top.luc │ │ │ │ │ ├── pdm_mics.luc │ │ │ │ │ └── sound_locator.luc │ │ │ └── projects.xml │ │ ├── Verilog │ │ │ ├── Base Project │ │ │ │ ├── Base Project.alp │ │ │ │ └── source │ │ │ │ │ └── mojo_top.v │ │ │ └── projects.xml │ │ └── coregen_prop │ └── templates │ │ ├── module.luc │ │ └── module.v ├── components │ ├── alchitry.acf │ ├── alchitry.xdc │ ├── arbiter.luc │ ├── async_fifo.luc │ ├── au.xdc │ ├── au_debugger.luc │ ├── avr_interface.luc │ ├── bin_to_dec.luc │ ├── bit_align.luc │ ├── button_conditioner.luc │ ├── camera_shield.ucf │ ├── cclk_detector.luc │ ├── channel_align.luc │ ├── clock_shield.ucf │ ├── counter.luc │ ├── ddr_arbiter.luc │ ├── decoder.luc │ ├── dvi_decoder.luc │ ├── dvi_encoder.luc │ ├── dvi_globals.luc │ ├── edge_detector.luc │ ├── edid_rom.luc │ ├── encoder.luc │ ├── fifo.luc │ ├── fifo_2x_reducer.luc │ ├── ft.acf │ ├── ft600.luc │ ├── hdmi.ucf │ ├── hdmi_decoder.luc │ ├── hdmi_encoder.luc │ ├── hdmi_passthru.luc │ ├── i2c_controller.luc │ ├── i2c_peripheral.luc │ ├── io.acf │ ├── io_shield.ucf │ ├── lib.xml │ ├── lru_cache.luc │ ├── mem_write_buffer.luc │ ├── memory_arbiter.luc │ ├── memory_bus.luc │ ├── mig.prj │ ├── mig_plus.prj │ ├── mig_wrapper.luc │ ├── mojo.ucf │ ├── ov2640.luc │ ├── ov2640_cif_config.luc │ ├── ov2640_qcif_config.luc │ ├── ov2640_qvga_config.luc │ ├── ov2640_svga_config.luc │ ├── ov2640_sxga_config.luc │ ├── ov2640_uxga_config.luc │ ├── ov2640_vga_config.luc │ ├── ov2640_xga_config.luc │ ├── pipeline.luc │ ├── pn_gen.luc │ ├── pull_down.luc │ ├── pull_down_2d.luc │ ├── pulse_delay_chain.luc │ ├── pulse_extender.luc │ ├── pwm.luc │ ├── reg_interface.luc │ ├── reg_interface_debug.luc │ ├── reset_conditioner.luc │ ├── sccb.luc │ ├── sdram.luc │ ├── sdram_shield.ucf │ ├── serdes_1_to_5.luc │ ├── serdes_n_to_1.luc │ ├── servo.luc │ ├── servo_shield.ucf │ ├── simple_dual_ram.v │ ├── simple_ram.v │ ├── spi_controller.luc │ ├── spi_peripheral.luc │ ├── tmds_decoder.luc │ ├── tmds_encoder.luc │ ├── uart_rx.luc │ ├── uart_tx.luc │ ├── wave.luc │ ├── wave_capture.luc │ └── xilinx.xml └── firmware │ ├── mojo-v2-loader.hex │ └── mojo-v3-loader.hex ├── res ├── fonts │ ├── Ubuntu-B.ttf │ ├── Ubuntu-BI.ttf │ ├── Ubuntu-R.ttf │ ├── Ubuntu-RI.ttf │ ├── UbuntuMono-B.ttf │ ├── UbuntuMono-BI.ttf │ ├── UbuntuMono-R.ttf │ └── UbuntuMono-RI.ttf ├── fpga │ ├── au_loader.bin │ └── au_plus_loader.bin └── images │ ├── arrow-down.png │ ├── arrow-up.png │ ├── au.svg │ ├── build.png │ ├── cancel.png │ ├── capture.png │ ├── case-sensitive.png │ ├── check.png │ ├── connect.png │ ├── cu.svg │ ├── debug.png │ ├── erase.png │ ├── falling_edge.png │ ├── file.png │ ├── high_level.png │ ├── icon.png │ ├── load-temp.png │ ├── load.png │ ├── low_level.png │ ├── mojo_v3.svg │ ├── plus.png │ ├── regex.png │ ├── replace-all.png │ ├── replace-one.png │ ├── rising_edge.png │ ├── save.png │ ├── saveall.png │ ├── sync.png │ ├── tree-arrow.png │ └── x.png └── src ├── com └── alchitry │ └── labs │ ├── .gitignore │ ├── Download.java │ ├── ExtractUtility.java │ ├── Locations.kt │ ├── Main.kt │ ├── Named.java │ ├── Reporter.kt │ ├── Settings.kt │ ├── Strings.java │ ├── UpdateChecker.kt │ ├── Util.kt │ ├── dictionaries │ ├── AlchitryConstraintsDictionary.java │ ├── Dictionary.java │ └── LucidDictionary.java │ ├── gui │ ├── BaudDialog.java │ ├── BlockIndenter.java │ ├── BoardSelector.java │ ├── CachedStyleListener.java │ ├── ComponentsDialog.java │ ├── ConstraintsEditor.java │ ├── DeviceSelector.java │ ├── DoubleClickHighlighter.java │ ├── FeedbackDialog.kt │ ├── FileDownloaderDialog.java │ ├── NewProjectDialog.kt │ ├── NewSourceDialog.java │ ├── PrintOptionsDialog.java │ ├── RenameDialog.java │ ├── SignalSelectionDialog.java │ ├── StyledCodeEditor.kt │ ├── TextHighlighter.kt │ ├── Theme.kt │ ├── ThemeSelectorDialog.java │ ├── WaveForm.java │ ├── WelcomeDialog.kt │ ├── main │ │ ├── LoaderWindow.kt │ │ ├── MainMenu.kt │ │ ├── MainToolbar.kt │ │ └── MainWindow.kt │ ├── tools │ │ ├── ImageCapture.java │ │ ├── RegInterface.kt │ │ └── SerialMonitor.kt │ └── util │ │ ├── HotKeys.java │ │ ├── Images.java │ │ ├── Search.kt │ │ ├── Style.java │ │ └── UndoRedo.kt │ ├── hardware │ ├── Callback.java │ ├── RegisterInterface.java │ ├── boards │ │ ├── AlchitryAu.kt │ │ ├── AlchitryAuPlus.kt │ │ ├── AlchitryCu.kt │ │ ├── Board.kt │ │ └── Mojo.kt │ ├── debuggers │ │ ├── AuDebugger.java │ │ ├── Debugger.java │ │ └── MojoDebugger.java │ ├── loaders │ │ ├── AuLoader.kt │ │ ├── CuLoader.java │ │ ├── MojoLoader.java │ │ └── ProjectLoader.java │ ├── pinout │ │ ├── AlchitryAuPinConverter.java │ │ ├── AlchitryCuPinConverter.java │ │ └── PinConverter.java │ └── usb │ │ ├── GenericSerial.java │ │ ├── MojoLibUsbSerial.java │ │ ├── SerialDevice.java │ │ ├── UsbDevice.java │ │ ├── UsbUtil.kt │ │ └── ftdi │ │ ├── Ftdi.java │ │ ├── FtdiD2xx.java │ │ ├── FtdiLibUSB.java │ │ ├── Jtag.java │ │ ├── JtagState.java │ │ ├── LatticeSpi.java │ │ ├── Mpsse.java │ │ ├── XilinxJtag.kt │ │ └── enums │ │ ├── BitMode.java │ │ ├── CbusFunc.java │ │ ├── CbushFunc.java │ │ ├── CbusxFunc.java │ │ ├── ChipType.java │ │ ├── DetachMode.java │ │ ├── EepromValue.java │ │ ├── FlashCommand.java │ │ ├── FlowControl.java │ │ ├── LineBreak.java │ │ ├── LineDatabit.java │ │ ├── LineParity.java │ │ ├── LineStopbit.java │ │ ├── MpsseCommand.java │ │ └── PortInterfaceType.java │ ├── parsers │ ├── BigFunctions.java │ ├── BitValue.kt │ ├── ConstValue.java │ ├── HasWidth.java │ ├── InstModule.java │ ├── Module.java │ ├── Param.java │ ├── ProjectSignal.java │ ├── Sig.java │ ├── constraints │ │ ├── .gitignore │ │ ├── AlchitryConstraints.g4 │ │ ├── AlchitryConstraintsBaseListener.java │ │ ├── AlchitryConstraintsBaseVisitor.java │ │ ├── AlchitryConstraintsLexer.java │ │ ├── AlchitryConstraintsListener.java │ │ ├── AlchitryConstraintsParser.java │ │ └── AlchitryConstraintsVisitor.java │ ├── errors │ │ ├── AlchitryConstraintsErrorProvider.java │ │ ├── DummyErrorListener.java │ │ ├── ErrorListener.kt │ │ ├── ErrorProvider.java │ │ ├── ErrorStrings.java │ │ ├── LucidErrorProvider.java │ │ └── VerilogErrorProvider.java │ ├── lucid │ │ ├── AssignBlock.java │ │ ├── Lucid.kt │ │ ├── SignalWidth.java │ │ ├── indent │ │ │ ├── LucidIndent.g4 │ │ │ ├── LucidIndent.interp │ │ │ ├── LucidIndent.tokens │ │ │ ├── LucidIndentBaseListener.java │ │ │ ├── LucidIndentBaseVisitor.java │ │ │ ├── LucidIndentLexer.interp │ │ │ ├── LucidIndentLexer.java │ │ │ ├── LucidIndentLexer.tokens │ │ │ ├── LucidIndentListener.java │ │ │ ├── LucidIndentParser.java │ │ │ └── LucidIndentVisitor.java │ │ └── parser │ │ │ ├── .gitignore │ │ │ ├── Lucid.g4 │ │ │ ├── LucidBaseListener.java │ │ │ ├── LucidLexer.java │ │ │ ├── LucidListener.java │ │ │ └── LucidParser.java │ ├── lucidv2 │ │ ├── Errors.kt │ │ ├── ExprParser.kt │ │ ├── ExprParserTest.kt │ │ ├── LucidProject.kt │ │ ├── SignalParser.kt │ │ ├── SignalResolver.kt │ │ ├── grammar │ │ │ ├── Lucid.g4 │ │ │ ├── LucidBaseListener.java │ │ │ ├── LucidLexer.java │ │ │ ├── LucidListener.java │ │ │ └── LucidParser.java │ │ ├── signals │ │ │ ├── Constant.kt │ │ │ ├── Dff.kt │ │ │ ├── Fsm.kt │ │ │ ├── Named.kt │ │ │ ├── Signal.kt │ │ │ ├── SyncLogic.kt │ │ │ └── Type.kt │ │ └── values │ │ │ ├── BitValue.kt │ │ │ ├── Function.kt │ │ │ ├── MutableBitList.kt │ │ │ ├── SignalWidth.kt │ │ │ └── Value.kt │ ├── styles │ │ ├── AlchitryConstraintStyleProvider.java │ │ ├── LucidNewLineIndenter.kt │ │ ├── LucidStyleProvider.java │ │ ├── StyleProvider.java │ │ ├── VerilogIndentProvider.java │ │ ├── VerilogNewLineIndenter.java │ │ └── VerilogStyleProvider.java │ ├── tools │ │ ├── constraints │ │ │ └── AlchitryConstraintsExtractor.java │ │ ├── lucid │ │ │ ├── ArrayBounds.kt │ │ │ ├── BitWidthChecker.java │ │ │ ├── BoundsParser.java │ │ │ ├── BoundsProvider.java │ │ │ ├── ConstExprParser.java │ │ │ ├── ConstParser.java │ │ │ ├── ConstProvider.java │ │ │ ├── LucidDebugModifier.java │ │ │ ├── LucidExtractor.java │ │ │ ├── LucidGlobalExtractor.java │ │ │ ├── LucidModuleExtractor.java │ │ │ ├── LucidModuleRenamer.java │ │ │ ├── ParamsParser.java │ │ │ ├── WidthProvider.java │ │ │ └── toVerilog │ │ │ │ ├── LucidConvertedHeader.java │ │ │ │ ├── LucidToVerilog.java │ │ │ │ └── ReservedWords.java │ │ └── verilog │ │ │ ├── VerilogConstExprParser.java │ │ │ ├── VerilogLucidModuleFixer.java │ │ │ └── VerilogModuleListener.java │ ├── types │ │ ├── ClockConstraint.kt │ │ ├── Connection.java │ │ ├── Constant.java │ │ ├── Dff.java │ │ ├── Fsm.java │ │ ├── PinConstraint.kt │ │ ├── Struct.java │ │ ├── SyncLogic.java │ │ └── Var.java │ └── verilog │ │ ├── .gitignore │ │ ├── Verilog2001.g4 │ │ ├── Verilog2001BaseListener.java │ │ ├── Verilog2001BaseVisitor.java │ │ ├── Verilog2001Lexer.java │ │ ├── Verilog2001Listener.java │ │ ├── Verilog2001Parser.java │ │ └── Verilog2001Visitor.java │ ├── project │ ├── CoreGen.java │ ├── DebugInfo.java │ ├── Environment.java │ ├── IPCore.kt │ ├── Primitive.java │ ├── Project.kt │ ├── SourceFile.kt │ ├── Tags.java │ ├── VivadoIP.kt │ └── builders │ │ ├── ISEBuilder.java │ │ ├── IceCubeBuilder.java │ │ ├── IceStormBuilder.java │ │ ├── ProjectBuilder.java │ │ └── VivadoBuilder.java │ ├── style │ ├── AutoComplete.java │ ├── AutoFormatter.java │ ├── BracketUnderliner.java │ ├── IndentProvider.kt │ ├── LineHighlighter.java │ ├── LineStyler.java │ ├── ParseException.java │ ├── StyleUtil.java │ ├── SyntaxError.java │ └── ToolTipListener.java │ ├── tools │ ├── ParseTreeMultiWalker.java │ └── ParserCache.java │ └── widgets │ ├── CustomButton.kt │ ├── CustomCombo.java │ ├── CustomConsole.java │ ├── CustomSearch.kt │ ├── CustomSearchAndReplace.kt │ ├── CustomTab.kt │ ├── CustomTable.kt │ ├── CustomTabs.kt │ ├── CustomToggle.kt │ ├── CustomTree.kt │ ├── ImageChangedListener.java │ ├── IoRegion.java │ ├── Region.java │ ├── ResizingImage.java │ ├── SelectableSVG.java │ ├── SignalSelector.java │ ├── TabChild.java │ ├── TabHotKeys.java │ ├── TabTransfer.java │ ├── TextProgressBar.java │ ├── WaveSignal.java │ └── Waves.java └── org └── eclipse └── wb └── swt └── SWTResourceManager.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/libraries-with-intellij-classes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/libraries-with-intellij-classes.xml -------------------------------------------------------------------------------- /.idea/libraries/KotlinJavaRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/libraries/KotlinJavaRuntime.xml -------------------------------------------------------------------------------- /.idea/libraries/de_brudaswen_kotlinx_coroutines_kotlinx_coroutines_swt_1_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/libraries/de_brudaswen_kotlinx_coroutines_kotlinx_coroutines_swt_1_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/org_antlr_antlr4_runtime_4_8_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/libraries/org_antlr_antlr4_runtime_4_8_1.xml -------------------------------------------------------------------------------- /.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_core.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lib/antlr4-runtime-4.8-1-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/lib/antlr4-runtime-4.8-1-javadoc.jar -------------------------------------------------------------------------------- /lib/antlr4-runtime-4.8-1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/lib/antlr4-runtime-4.8-1-sources.jar -------------------------------------------------------------------------------- /lib/antlr4-runtime-4.8-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/lib/antlr4-runtime-4.8-1.jar -------------------------------------------------------------------------------- /lib/kotlinx-coroutines-core-1.3.9-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/lib/kotlinx-coroutines-core-1.3.9-javadoc.jar -------------------------------------------------------------------------------- /lib/kotlinx-coroutines-core-1.3.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/lib/kotlinx-coroutines-core-1.3.9.jar -------------------------------------------------------------------------------- /lib/kotlinx-coroutines-swt-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/lib/kotlinx-coroutines-swt-1.0.0.jar -------------------------------------------------------------------------------- /lib/swt-linux.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/lib/swt-linux.jar -------------------------------------------------------------------------------- /lib/swt-windows.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/lib/swt-windows.jar -------------------------------------------------------------------------------- /lib/yad2xxJava-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/lib/yad2xxJava-1.0.jar -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Base Project/Base Project.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Base Project/Base Project.alp -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Base Project/source/au_plus_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Base Project/source/au_plus_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Blinker Demo/Blinker Demo.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Blinker Demo/Blinker Demo.alp -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Blinker Demo/source/au_plus_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Blinker Demo/source/au_plus_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Blinker Demo/source/blinker.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Blinker Demo/source/blinker.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Hello RAM/Hello RAM.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Hello RAM/Hello RAM.alp -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Hello RAM/source/au_plus_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Hello RAM/source/au_plus_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Hello RAM/source/greeter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Hello RAM/source/greeter.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Hello World/Hello World.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Hello World/Hello World.alp -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Hello World/source/au_plus_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Hello World/source/au_plus_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Hello World/source/greeter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Hello World/source/greeter.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/Hello World/source/hello_world_rom.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/Hello World/source/hello_world_rom.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/IO Element Base/IO Element Base.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/IO Element Base/IO Element Base.alp -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/IO Element Base/source/au_plus_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/IO Element Base/source/au_plus_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/IO Element Demo/IO Element Demo.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/IO Element Demo/IO Element Demo.alp -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/IO Element Demo/source/au_plus_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/IO Element Demo/source/au_plus_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/IO Element Demo/source/decimal_counter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/IO Element Demo/source/decimal_counter.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/IO Element Demo/source/multi_dec_ctr.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/IO Element Demo/source/multi_dec_ctr.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/IO Element Demo/source/multi_seven_seg.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/IO Element Demo/source/multi_seven_seg.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/IO Element Demo/source/seven_seg.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/IO Element Demo/source/seven_seg.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/LED to Button/LED to Button.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/LED to Button/LED to Button.alp -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/LED to Button/source/au_plus_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/LED to Button/source/au_plus_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Lucid/projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Lucid/projects.xml -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Verilog/Base Project/Base Project.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Verilog/Base Project/Base Project.alp -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Verilog/Base Project/source/au_plus_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Verilog/Base Project/source/au_plus_top.v -------------------------------------------------------------------------------- /library/base/alchitry-au-plus/Verilog/projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au-plus/Verilog/projects.xml -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Base Project/Base Project.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Base Project/Base Project.alp -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Base Project/source/au_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Base Project/source/au_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Blinker Demo/Blinker Demo.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Blinker Demo/Blinker Demo.alp -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Blinker Demo/source/au_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Blinker Demo/source/au_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Blinker Demo/source/blinker.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Blinker Demo/source/blinker.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Hello RAM/Hello RAM.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Hello RAM/Hello RAM.alp -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Hello RAM/source/au_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Hello RAM/source/au_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Hello RAM/source/greeter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Hello RAM/source/greeter.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Hello World/Hello World.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Hello World/Hello World.alp -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Hello World/source/au_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Hello World/source/au_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Hello World/source/greeter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Hello World/source/greeter.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/Hello World/source/hello_world_rom.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/Hello World/source/hello_world_rom.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/IO Element Base/IO Element Base.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/IO Element Base/IO Element Base.alp -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/IO Element Base/source/au_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/IO Element Base/source/au_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/IO Element Demo/IO Element Demo.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/IO Element Demo/IO Element Demo.alp -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/IO Element Demo/source/au_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/IO Element Demo/source/au_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/IO Element Demo/source/decimal_counter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/IO Element Demo/source/decimal_counter.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/IO Element Demo/source/multi_dec_ctr.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/IO Element Demo/source/multi_dec_ctr.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/IO Element Demo/source/multi_seven_seg.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/IO Element Demo/source/multi_seven_seg.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/IO Element Demo/source/seven_seg.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/IO Element Demo/source/seven_seg.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/LED to Button/LED to Button.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/LED to Button/LED to Button.alp -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/LED to Button/source/au_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/LED to Button/source/au_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-au/Lucid/projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Lucid/projects.xml -------------------------------------------------------------------------------- /library/base/alchitry-au/Verilog/Base Project/Base Project.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Verilog/Base Project/Base Project.alp -------------------------------------------------------------------------------- /library/base/alchitry-au/Verilog/Base Project/source/au_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Verilog/Base Project/source/au_top.v -------------------------------------------------------------------------------- /library/base/alchitry-au/Verilog/projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-au/Verilog/projects.xml -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Base Project/Base Project.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Base Project/Base Project.alp -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Base Project/source/cu_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Base Project/source/cu_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Blinker Demo/Blinker Demo.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Blinker Demo/Blinker Demo.alp -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Blinker Demo/source/blinker.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Blinker Demo/source/blinker.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Blinker Demo/source/cu_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Blinker Demo/source/cu_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Hello RAM/Hello RAM.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Hello RAM/Hello RAM.alp -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Hello RAM/source/cu_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Hello RAM/source/cu_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Hello RAM/source/greeter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Hello RAM/source/greeter.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Hello World/Hello World.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Hello World/Hello World.alp -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Hello World/source/cu_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Hello World/source/cu_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Hello World/source/greeter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Hello World/source/greeter.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/Hello World/source/hello_world_rom.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/Hello World/source/hello_world_rom.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/IO Element Base/IO Element Base.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/IO Element Base/IO Element Base.alp -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/IO Element Base/source/cu_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/IO Element Base/source/cu_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/IO Element Demo/IO Element Demo.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/IO Element Demo/IO Element Demo.alp -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/IO Element Demo/source/cu_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/IO Element Demo/source/cu_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/IO Element Demo/source/decimal_counter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/IO Element Demo/source/decimal_counter.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/IO Element Demo/source/multi_dec_ctr.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/IO Element Demo/source/multi_dec_ctr.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/IO Element Demo/source/multi_seven_seg.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/IO Element Demo/source/multi_seven_seg.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/IO Element Demo/source/seven_seg.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/IO Element Demo/source/seven_seg.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/LED to Button/LED to Button.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/LED to Button/LED to Button.alp -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/LED to Button/source/cu_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/LED to Button/source/cu_top.luc -------------------------------------------------------------------------------- /library/base/alchitry-cu/Lucid/projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Lucid/projects.xml -------------------------------------------------------------------------------- /library/base/alchitry-cu/Verilog/Base Project/Base Project.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Verilog/Base Project/Base Project.alp -------------------------------------------------------------------------------- /library/base/alchitry-cu/Verilog/Base Project/source/cu_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Verilog/Base Project/source/cu_top.v -------------------------------------------------------------------------------- /library/base/alchitry-cu/Verilog/projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/alchitry-cu/Verilog/projects.xml -------------------------------------------------------------------------------- /library/base/mojo/Lucid/AVR Interface/AVR Interface.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/AVR Interface/AVR Interface.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/AVR Interface/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/AVR Interface/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Analog Inputs/Analog Inputs.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Analog Inputs/Analog Inputs.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Analog Inputs/source/adc_to_leds.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Analog Inputs/source/adc_to_leds.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Analog Inputs/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Analog Inputs/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Base Project/Base Project.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Base Project/Base Project.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Base Project/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Base Project/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Basic CPU/Basic CPU.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Basic CPU/Basic CPU.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Basic CPU/source/cpu.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Basic CPU/source/cpu.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Basic CPU/source/instRom.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Basic CPU/source/instRom.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Basic CPU/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Basic CPU/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Blinker Demo/Blinker Demo.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Blinker Demo/Blinker Demo.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Blinker Demo/source/blinker.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Blinker Demo/source/blinker.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Blinker Demo/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Blinker Demo/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/Camera to HDMI.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/Camera to HDMI.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.asy -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.gise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.gise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.ucf -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.veo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.veo -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.xco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.xco -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.xdc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen.xise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/clk_wiz_v3_6_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/clk_wiz_v3_6_readme.txt -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/example_design/clk_gen_exdes.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/example_design/clk_gen_exdes.ucf -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/example_design/clk_gen_exdes.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/example_design/clk_gen_exdes.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/example_design/clk_gen_exdes.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/example_design/clk_gen_exdes.xdc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/implement.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/implement.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/implement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/implement.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_ise.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_ise.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_ise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_ise.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_ise.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_ise.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_rdn.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_rdn.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_rdn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_rdn.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_rdn.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/planAhead_rdn.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/xst.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/xst.prj -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/xst.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/implement/xst.scr -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/clk_gen_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/clk_gen_tb.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simcmds.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simcmds.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simulate_isim.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simulate_isim.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simulate_mti.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simulate_mti.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simulate_mti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simulate_mti.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simulate_vcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/simulate_vcs.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/vcs_session.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/vcs_session.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/wave.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/wave.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/functional/wave.sv -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/clk_gen_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/clk_gen_tb.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/sdf_cmd_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/sdf_cmd_file -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simcmds.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simcmds.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_isim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_isim.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_mti.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_mti.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_mti.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_mti.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_mti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_mti.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_ncsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_ncsim.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_vcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/simulate_vcs.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/ucli_commands.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/ucli_commands.key -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/vcs_session.tcl: -------------------------------------------------------------------------------- 1 | gui_open_window Wave 2 | -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen/simulation/timing/wave.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen_flist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen_flist.txt -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen_xmdf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/clk_gen_xmdf.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/coregen.cgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/coregen.cgc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/coreGen/coregen.cgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/coreGen/coregen.cgp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/source/img_capture.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/source/img_capture.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/source/mem_to_hdmi.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/source/mem_to_hdmi.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Camera to HDMI/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Camera to HDMI/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/External IO/External IO.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/External IO/External IO.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/External IO/constraint/custom.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/External IO/constraint/custom.ucf -------------------------------------------------------------------------------- /library/base/mojo/Lucid/External IO/source/counter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/External IO/source/counter.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/External IO/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/External IO/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Hello RAM/Hello RAM.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Hello RAM/Hello RAM.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Hello RAM/source/greeter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Hello RAM/source/greeter.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Hello RAM/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Hello RAM/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Hello World/Hello World.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Hello World/Hello World.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Hello World/source/greeter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Hello World/source/greeter.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Hello World/source/hello_world_rom.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Hello World/source/hello_world_rom.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Hello World/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Hello World/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/IO Shield Base/IO Shield Base.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/IO Shield Base/IO Shield Base.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/IO Shield Base/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/IO Shield Base/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/IO Shield Demo/IO Shield Demo.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/IO Shield Demo/IO Shield Demo.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/IO Shield Demo/source/decimal_counter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/IO Shield Demo/source/decimal_counter.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/IO Shield Demo/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/IO Shield Demo/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/IO Shield Demo/source/multi_dec_ctr.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/IO Shield Demo/source/multi_dec_ctr.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/IO Shield Demo/source/multi_seven_seg.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/IO Shield Demo/source/multi_seven_seg.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/IO Shield Demo/source/seven_seg.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/IO Shield Demo/source/seven_seg.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/Image Capture.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/Image Capture.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.asy -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.gise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.gise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.ucf -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.veo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.veo -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.xco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.xco -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.xdc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz.xise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/clk_wiz_v3_6_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/clk_wiz_v3_6_readme.txt -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/example_design/clk_wiz_exdes.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/example_design/clk_wiz_exdes.ucf -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/example_design/clk_wiz_exdes.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/example_design/clk_wiz_exdes.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/example_design/clk_wiz_exdes.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/example_design/clk_wiz_exdes.xdc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/implement.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/implement.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/implement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/implement.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_ise.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_ise.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_ise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_ise.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_ise.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_ise.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_rdn.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_rdn.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_rdn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_rdn.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_rdn.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/planAhead_rdn.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/xst.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/xst.prj -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/xst.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/implement/xst.scr -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/clk_wiz_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/clk_wiz_tb.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simcmds.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simcmds.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_isim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_isim.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_mti.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_mti.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_mti.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_mti.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_mti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_mti.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_vcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/simulate_vcs.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/vcs_session.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/vcs_session.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/wave.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/wave.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/functional/wave.sv -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/clk_wiz_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/clk_wiz_tb.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/sdf_cmd_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/sdf_cmd_file -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simcmds.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simcmds.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_isim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_isim.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_mti.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_mti.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_mti.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_mti.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_mti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_mti.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_ncsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_ncsim.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_vcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/simulate_vcs.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/ucli_commands.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/ucli_commands.key -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/vcs_session.tcl: -------------------------------------------------------------------------------- 1 | gui_open_window Wave 2 | -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz/simulation/timing/wave.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz_flist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz_flist.txt -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz_xmdf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/clk_wiz_xmdf.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/coregen.cgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/coregen.cgc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/coreGen/coregen.cgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/coreGen/coregen.cgp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/source/img_capture.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/source/img_capture.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Image Capture/source/ram_to_reg.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Image Capture/source/ram_to_reg.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/LED to Button/LED to Button.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/LED to Button/LED to Button.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/LED to Button/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/LED to Button/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Reg Interface/Reg Interface.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Reg Interface/Reg Interface.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Reg Interface/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Reg Interface/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/SDRAM Tester.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/SDRAM Tester.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/_xmsgs/pn_parser.xmsgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/_xmsgs/pn_parser.xmsgs -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.asy -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.gise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.gise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.ucf -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.veo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.veo -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.xco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.xco -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.xdc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz.xise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/clk_wiz_v3_6_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/clk_wiz_v3_6_readme.txt -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/example_design/clk_wiz_exdes.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/example_design/clk_wiz_exdes.ucf -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/example_design/clk_wiz_exdes.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/example_design/clk_wiz_exdes.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/example_design/clk_wiz_exdes.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/example_design/clk_wiz_exdes.xdc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/implement.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/implement.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/implement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/implement.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_ise.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_ise.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_ise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_ise.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_ise.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_ise.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_rdn.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_rdn.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_rdn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_rdn.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_rdn.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/planAhead_rdn.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/xst.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/xst.prj -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/xst.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/implement/xst.scr -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/clk_wiz_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/clk_wiz_tb.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simcmds.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simcmds.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_isim.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_isim.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_isim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_isim.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_mti.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_mti.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_mti.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_mti.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_mti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_mti.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_ncsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_ncsim.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_vcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/simulate_vcs.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/ucli_commands.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/ucli_commands.key -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/vcs_session.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/vcs_session.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/wave.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/wave.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/functional/wave.sv -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/clk_wiz_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/clk_wiz_tb.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/sdf_cmd_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/sdf_cmd_file -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simcmds.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simcmds.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_isim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_isim.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_mti.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_mti.bat -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_mti.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_mti.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_mti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_mti.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_ncsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_ncsim.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_vcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/simulate_vcs.sh -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/ucli_commands.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/ucli_commands.key -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/vcs_session.tcl: -------------------------------------------------------------------------------- 1 | gui_open_window Wave 2 | -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz/simulation/timing/wave.do -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz_flist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz_flist.txt -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz_xmdf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/clk_wiz_xmdf.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/coregen.cgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/coregen.cgc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/coregen.cgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/coregen.cgp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/coreGen/customization_gui.0.314470607934.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/coreGen/customization_gui.0.314470607934.out -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/SDRAM Tester/source/ram_test.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/SDRAM Tester/source/ram_test.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Serial Port Echo/Serial Port Echo.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Serial Port Echo/Serial Port Echo.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Serial Port Echo/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Serial Port Echo/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/Sound Locator.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/Sound Locator.alp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/constraint/debug.ucf: -------------------------------------------------------------------------------- 1 | NET "debug" LOC = P30 | IOSTANDARD = LVTTL; -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/constraint/mic_shield.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/constraint/mic_shield.ucf -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/_xmsgs/xst.xmsgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/_xmsgs/xst.xmsgs -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/coregen.cgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/coregen.cgc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/coregen.cgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/coregen.cgp -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.asy -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.gise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.gise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.ngc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.veo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.veo -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.xco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.xco -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter.xise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter_flist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter_flist.txt -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter_xmdf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/decimation_filter_xmdf.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_decimation_filter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_decimation_filter.vhd -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_fir_filter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_fir_filter.vhd -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_mag_phase_calculator.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_mag_phase_calculator.vhd -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_phase_calculator.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_phase_calculator.vhd -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_xfft_v8_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/demo_tb/tb_xfft_v8_0.vhd -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.asy -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.gise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.gise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.ngc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.veo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.veo -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.xco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.xco -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator.xise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator_flist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator_flist.txt -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator_xmdf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/mag_phase_calculator_xmdf.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.asy -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.gise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.gise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.ngc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.v -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.veo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.veo -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.xco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.xco -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0.xise -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0_flist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0_flist.txt -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0_xmdf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/coreGen/xfft_v8_0_xmdf.tcl -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/source/hann_rom.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/source/hann_rom.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/source/led_ring.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/source/led_ring.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/source/mojo_top.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/source/mojo_top.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/source/pdm_mics.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/source/pdm_mics.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/Sound Locator/source/sound_locator.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/Sound Locator/source/sound_locator.luc -------------------------------------------------------------------------------- /library/base/mojo/Lucid/projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Lucid/projects.xml -------------------------------------------------------------------------------- /library/base/mojo/Verilog/Base Project/Base Project.alp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Verilog/Base Project/Base Project.alp -------------------------------------------------------------------------------- /library/base/mojo/Verilog/Base Project/source/mojo_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Verilog/Base Project/source/mojo_top.v -------------------------------------------------------------------------------- /library/base/mojo/Verilog/projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/Verilog/projects.xml -------------------------------------------------------------------------------- /library/base/mojo/coregen_prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/mojo/coregen_prop -------------------------------------------------------------------------------- /library/base/templates/module.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/templates/module.luc -------------------------------------------------------------------------------- /library/base/templates/module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/base/templates/module.v -------------------------------------------------------------------------------- /library/components/alchitry.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/alchitry.acf -------------------------------------------------------------------------------- /library/components/alchitry.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/alchitry.xdc -------------------------------------------------------------------------------- /library/components/arbiter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/arbiter.luc -------------------------------------------------------------------------------- /library/components/async_fifo.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/async_fifo.luc -------------------------------------------------------------------------------- /library/components/au.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/au.xdc -------------------------------------------------------------------------------- /library/components/au_debugger.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/au_debugger.luc -------------------------------------------------------------------------------- /library/components/avr_interface.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/avr_interface.luc -------------------------------------------------------------------------------- /library/components/bin_to_dec.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/bin_to_dec.luc -------------------------------------------------------------------------------- /library/components/bit_align.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/bit_align.luc -------------------------------------------------------------------------------- /library/components/button_conditioner.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/button_conditioner.luc -------------------------------------------------------------------------------- /library/components/camera_shield.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/camera_shield.ucf -------------------------------------------------------------------------------- /library/components/cclk_detector.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/cclk_detector.luc -------------------------------------------------------------------------------- /library/components/channel_align.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/channel_align.luc -------------------------------------------------------------------------------- /library/components/clock_shield.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/clock_shield.ucf -------------------------------------------------------------------------------- /library/components/counter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/counter.luc -------------------------------------------------------------------------------- /library/components/ddr_arbiter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ddr_arbiter.luc -------------------------------------------------------------------------------- /library/components/decoder.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/decoder.luc -------------------------------------------------------------------------------- /library/components/dvi_decoder.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/dvi_decoder.luc -------------------------------------------------------------------------------- /library/components/dvi_encoder.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/dvi_encoder.luc -------------------------------------------------------------------------------- /library/components/dvi_globals.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/dvi_globals.luc -------------------------------------------------------------------------------- /library/components/edge_detector.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/edge_detector.luc -------------------------------------------------------------------------------- /library/components/edid_rom.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/edid_rom.luc -------------------------------------------------------------------------------- /library/components/encoder.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/encoder.luc -------------------------------------------------------------------------------- /library/components/fifo.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/fifo.luc -------------------------------------------------------------------------------- /library/components/fifo_2x_reducer.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/fifo_2x_reducer.luc -------------------------------------------------------------------------------- /library/components/ft.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ft.acf -------------------------------------------------------------------------------- /library/components/ft600.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ft600.luc -------------------------------------------------------------------------------- /library/components/hdmi.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/hdmi.ucf -------------------------------------------------------------------------------- /library/components/hdmi_decoder.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/hdmi_decoder.luc -------------------------------------------------------------------------------- /library/components/hdmi_encoder.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/hdmi_encoder.luc -------------------------------------------------------------------------------- /library/components/hdmi_passthru.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/hdmi_passthru.luc -------------------------------------------------------------------------------- /library/components/i2c_controller.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/i2c_controller.luc -------------------------------------------------------------------------------- /library/components/i2c_peripheral.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/i2c_peripheral.luc -------------------------------------------------------------------------------- /library/components/io.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/io.acf -------------------------------------------------------------------------------- /library/components/io_shield.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/io_shield.ucf -------------------------------------------------------------------------------- /library/components/lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/lib.xml -------------------------------------------------------------------------------- /library/components/lru_cache.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/lru_cache.luc -------------------------------------------------------------------------------- /library/components/mem_write_buffer.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/mem_write_buffer.luc -------------------------------------------------------------------------------- /library/components/memory_arbiter.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/memory_arbiter.luc -------------------------------------------------------------------------------- /library/components/memory_bus.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/memory_bus.luc -------------------------------------------------------------------------------- /library/components/mig.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/mig.prj -------------------------------------------------------------------------------- /library/components/mig_plus.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/mig_plus.prj -------------------------------------------------------------------------------- /library/components/mig_wrapper.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/mig_wrapper.luc -------------------------------------------------------------------------------- /library/components/mojo.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/mojo.ucf -------------------------------------------------------------------------------- /library/components/ov2640.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ov2640.luc -------------------------------------------------------------------------------- /library/components/ov2640_cif_config.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ov2640_cif_config.luc -------------------------------------------------------------------------------- /library/components/ov2640_qcif_config.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ov2640_qcif_config.luc -------------------------------------------------------------------------------- /library/components/ov2640_qvga_config.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ov2640_qvga_config.luc -------------------------------------------------------------------------------- /library/components/ov2640_svga_config.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ov2640_svga_config.luc -------------------------------------------------------------------------------- /library/components/ov2640_sxga_config.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ov2640_sxga_config.luc -------------------------------------------------------------------------------- /library/components/ov2640_uxga_config.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ov2640_uxga_config.luc -------------------------------------------------------------------------------- /library/components/ov2640_vga_config.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ov2640_vga_config.luc -------------------------------------------------------------------------------- /library/components/ov2640_xga_config.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/ov2640_xga_config.luc -------------------------------------------------------------------------------- /library/components/pipeline.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/pipeline.luc -------------------------------------------------------------------------------- /library/components/pn_gen.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/pn_gen.luc -------------------------------------------------------------------------------- /library/components/pull_down.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/pull_down.luc -------------------------------------------------------------------------------- /library/components/pull_down_2d.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/pull_down_2d.luc -------------------------------------------------------------------------------- /library/components/pulse_delay_chain.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/pulse_delay_chain.luc -------------------------------------------------------------------------------- /library/components/pulse_extender.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/pulse_extender.luc -------------------------------------------------------------------------------- /library/components/pwm.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/pwm.luc -------------------------------------------------------------------------------- /library/components/reg_interface.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/reg_interface.luc -------------------------------------------------------------------------------- /library/components/reg_interface_debug.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/reg_interface_debug.luc -------------------------------------------------------------------------------- /library/components/reset_conditioner.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/reset_conditioner.luc -------------------------------------------------------------------------------- /library/components/sccb.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/sccb.luc -------------------------------------------------------------------------------- /library/components/sdram.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/sdram.luc -------------------------------------------------------------------------------- /library/components/sdram_shield.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/sdram_shield.ucf -------------------------------------------------------------------------------- /library/components/serdes_1_to_5.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/serdes_1_to_5.luc -------------------------------------------------------------------------------- /library/components/serdes_n_to_1.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/serdes_n_to_1.luc -------------------------------------------------------------------------------- /library/components/servo.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/servo.luc -------------------------------------------------------------------------------- /library/components/servo_shield.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/servo_shield.ucf -------------------------------------------------------------------------------- /library/components/simple_dual_ram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/simple_dual_ram.v -------------------------------------------------------------------------------- /library/components/simple_ram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/simple_ram.v -------------------------------------------------------------------------------- /library/components/spi_controller.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/spi_controller.luc -------------------------------------------------------------------------------- /library/components/spi_peripheral.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/spi_peripheral.luc -------------------------------------------------------------------------------- /library/components/tmds_decoder.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/tmds_decoder.luc -------------------------------------------------------------------------------- /library/components/tmds_encoder.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/tmds_encoder.luc -------------------------------------------------------------------------------- /library/components/uart_rx.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/uart_rx.luc -------------------------------------------------------------------------------- /library/components/uart_tx.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/uart_tx.luc -------------------------------------------------------------------------------- /library/components/wave.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/wave.luc -------------------------------------------------------------------------------- /library/components/wave_capture.luc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/wave_capture.luc -------------------------------------------------------------------------------- /library/components/xilinx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/components/xilinx.xml -------------------------------------------------------------------------------- /library/firmware/mojo-v2-loader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/firmware/mojo-v2-loader.hex -------------------------------------------------------------------------------- /library/firmware/mojo-v3-loader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/library/firmware/mojo-v3-loader.hex -------------------------------------------------------------------------------- /res/fonts/Ubuntu-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fonts/Ubuntu-B.ttf -------------------------------------------------------------------------------- /res/fonts/Ubuntu-BI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fonts/Ubuntu-BI.ttf -------------------------------------------------------------------------------- /res/fonts/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fonts/Ubuntu-R.ttf -------------------------------------------------------------------------------- /res/fonts/Ubuntu-RI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fonts/Ubuntu-RI.ttf -------------------------------------------------------------------------------- /res/fonts/UbuntuMono-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fonts/UbuntuMono-B.ttf -------------------------------------------------------------------------------- /res/fonts/UbuntuMono-BI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fonts/UbuntuMono-BI.ttf -------------------------------------------------------------------------------- /res/fonts/UbuntuMono-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fonts/UbuntuMono-R.ttf -------------------------------------------------------------------------------- /res/fonts/UbuntuMono-RI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fonts/UbuntuMono-RI.ttf -------------------------------------------------------------------------------- /res/fpga/au_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fpga/au_loader.bin -------------------------------------------------------------------------------- /res/fpga/au_plus_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/fpga/au_plus_loader.bin -------------------------------------------------------------------------------- /res/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/arrow-down.png -------------------------------------------------------------------------------- /res/images/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/arrow-up.png -------------------------------------------------------------------------------- /res/images/au.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/au.svg -------------------------------------------------------------------------------- /res/images/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/build.png -------------------------------------------------------------------------------- /res/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/cancel.png -------------------------------------------------------------------------------- /res/images/capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/capture.png -------------------------------------------------------------------------------- /res/images/case-sensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/case-sensitive.png -------------------------------------------------------------------------------- /res/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/check.png -------------------------------------------------------------------------------- /res/images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/connect.png -------------------------------------------------------------------------------- /res/images/cu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/cu.svg -------------------------------------------------------------------------------- /res/images/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/debug.png -------------------------------------------------------------------------------- /res/images/erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/erase.png -------------------------------------------------------------------------------- /res/images/falling_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/falling_edge.png -------------------------------------------------------------------------------- /res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/file.png -------------------------------------------------------------------------------- /res/images/high_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/high_level.png -------------------------------------------------------------------------------- /res/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/icon.png -------------------------------------------------------------------------------- /res/images/load-temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/load-temp.png -------------------------------------------------------------------------------- /res/images/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/load.png -------------------------------------------------------------------------------- /res/images/low_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/low_level.png -------------------------------------------------------------------------------- /res/images/mojo_v3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/mojo_v3.svg -------------------------------------------------------------------------------- /res/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/plus.png -------------------------------------------------------------------------------- /res/images/regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/regex.png -------------------------------------------------------------------------------- /res/images/replace-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/replace-all.png -------------------------------------------------------------------------------- /res/images/replace-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/replace-one.png -------------------------------------------------------------------------------- /res/images/rising_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/rising_edge.png -------------------------------------------------------------------------------- /res/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/save.png -------------------------------------------------------------------------------- /res/images/saveall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/saveall.png -------------------------------------------------------------------------------- /res/images/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/sync.png -------------------------------------------------------------------------------- /res/images/tree-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/tree-arrow.png -------------------------------------------------------------------------------- /res/images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/res/images/x.png -------------------------------------------------------------------------------- /src/com/alchitry/labs/.gitignore: -------------------------------------------------------------------------------- 1 | /Reporter.java 2 | -------------------------------------------------------------------------------- /src/com/alchitry/labs/Download.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/Download.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/ExtractUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/ExtractUtility.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/Locations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/Locations.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/Main.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/Named.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/Named.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/Reporter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/Reporter.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/Settings.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/Strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/Strings.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/UpdateChecker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/UpdateChecker.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/Util.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/dictionaries/AlchitryConstraintsDictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/dictionaries/AlchitryConstraintsDictionary.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/dictionaries/Dictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/dictionaries/Dictionary.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/dictionaries/LucidDictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/dictionaries/LucidDictionary.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/BaudDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/BaudDialog.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/BlockIndenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/BlockIndenter.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/BoardSelector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/BoardSelector.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/CachedStyleListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/CachedStyleListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/ComponentsDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/ComponentsDialog.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/ConstraintsEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/ConstraintsEditor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/DeviceSelector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/DeviceSelector.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/DoubleClickHighlighter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/DoubleClickHighlighter.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/FeedbackDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/FeedbackDialog.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/FileDownloaderDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/FileDownloaderDialog.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/NewProjectDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/NewProjectDialog.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/NewSourceDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/NewSourceDialog.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/PrintOptionsDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/PrintOptionsDialog.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/RenameDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/RenameDialog.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/SignalSelectionDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/SignalSelectionDialog.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/StyledCodeEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/StyledCodeEditor.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/TextHighlighter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/TextHighlighter.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/Theme.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/ThemeSelectorDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/ThemeSelectorDialog.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/WaveForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/WaveForm.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/WelcomeDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/WelcomeDialog.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/main/LoaderWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/main/LoaderWindow.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/main/MainMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/main/MainMenu.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/main/MainToolbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/main/MainToolbar.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/main/MainWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/main/MainWindow.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/tools/ImageCapture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/tools/ImageCapture.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/tools/RegInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/tools/RegInterface.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/tools/SerialMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/tools/SerialMonitor.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/util/HotKeys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/util/HotKeys.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/util/Images.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/util/Images.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/util/Search.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/util/Search.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/util/Style.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/util/Style.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/gui/util/UndoRedo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/gui/util/UndoRedo.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/Callback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/Callback.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/RegisterInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/RegisterInterface.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/boards/AlchitryAu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/boards/AlchitryAu.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/boards/AlchitryAuPlus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/boards/AlchitryAuPlus.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/boards/AlchitryCu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/boards/AlchitryCu.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/boards/Board.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/boards/Board.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/boards/Mojo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/boards/Mojo.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/debuggers/AuDebugger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/debuggers/AuDebugger.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/debuggers/Debugger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/debuggers/Debugger.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/debuggers/MojoDebugger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/debuggers/MojoDebugger.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/loaders/AuLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/loaders/AuLoader.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/loaders/CuLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/loaders/CuLoader.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/loaders/MojoLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/loaders/MojoLoader.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/loaders/ProjectLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/loaders/ProjectLoader.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/pinout/AlchitryAuPinConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/pinout/AlchitryAuPinConverter.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/pinout/AlchitryCuPinConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/pinout/AlchitryCuPinConverter.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/pinout/PinConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/pinout/PinConverter.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/GenericSerial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/GenericSerial.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/MojoLibUsbSerial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/MojoLibUsbSerial.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/SerialDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/SerialDevice.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/UsbDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/UsbDevice.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/UsbUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/UsbUtil.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/Ftdi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/Ftdi.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/FtdiD2xx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/FtdiD2xx.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/FtdiLibUSB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/FtdiLibUSB.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/Jtag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/Jtag.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/JtagState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/JtagState.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/LatticeSpi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/LatticeSpi.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/Mpsse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/Mpsse.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/XilinxJtag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/XilinxJtag.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/BitMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/BitMode.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/CbusFunc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/CbusFunc.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/CbushFunc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/CbushFunc.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/CbusxFunc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/CbusxFunc.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/ChipType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/ChipType.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/DetachMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/DetachMode.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/EepromValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/EepromValue.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/FlashCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/FlashCommand.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/FlowControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/FlowControl.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/LineBreak.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/LineBreak.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/LineDatabit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/LineDatabit.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/LineParity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/LineParity.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/LineStopbit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/LineStopbit.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/MpsseCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/MpsseCommand.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/hardware/usb/ftdi/enums/PortInterfaceType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/hardware/usb/ftdi/enums/PortInterfaceType.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/BigFunctions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/BigFunctions.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/BitValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/BitValue.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/ConstValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/ConstValue.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/HasWidth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/HasWidth.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/InstModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/InstModule.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/Module.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/Param.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/Param.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/ProjectSignal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/ProjectSignal.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/Sig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/Sig.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/constraints/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/constraints/.gitignore -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/constraints/AlchitryConstraints.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/constraints/AlchitryConstraints.g4 -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsBaseListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsBaseListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsBaseVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsBaseVisitor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsLexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsLexer.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsParser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/constraints/AlchitryConstraintsVisitor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/errors/AlchitryConstraintsErrorProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/errors/AlchitryConstraintsErrorProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/errors/DummyErrorListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/errors/DummyErrorListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/errors/ErrorListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/errors/ErrorListener.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/errors/ErrorProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/errors/ErrorProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/errors/ErrorStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/errors/ErrorStrings.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/errors/LucidErrorProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/errors/LucidErrorProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/errors/VerilogErrorProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/errors/VerilogErrorProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/AssignBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/AssignBlock.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/Lucid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/Lucid.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/SignalWidth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/SignalWidth.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndent.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndent.g4 -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndent.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndent.interp -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndent.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndent.tokens -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndentBaseListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndentBaseListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndentBaseVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndentBaseVisitor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndentLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndentLexer.interp -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndentLexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndentLexer.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndentLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndentLexer.tokens -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndentListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndentListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndentParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndentParser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/indent/LucidIndentVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/indent/LucidIndentVisitor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/parser/.gitignore -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/parser/Lucid.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/parser/Lucid.g4 -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/parser/LucidBaseListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/parser/LucidBaseListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/parser/LucidLexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/parser/LucidLexer.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/parser/LucidListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/parser/LucidListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucid/parser/LucidParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucid/parser/LucidParser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/Errors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/Errors.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/ExprParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/ExprParser.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/ExprParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/ExprParserTest.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/LucidProject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/LucidProject.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/SignalParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/SignalParser.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/SignalResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/SignalResolver.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/grammar/Lucid.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/grammar/Lucid.g4 -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/grammar/LucidBaseListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/grammar/LucidBaseListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/grammar/LucidLexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/grammar/LucidLexer.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/grammar/LucidListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/grammar/LucidListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/grammar/LucidParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/grammar/LucidParser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/signals/Constant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/signals/Constant.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/signals/Dff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/signals/Dff.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/signals/Fsm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/signals/Fsm.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/signals/Named.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/signals/Named.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/signals/Signal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/signals/Signal.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/signals/SyncLogic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/signals/SyncLogic.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/signals/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/signals/Type.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/values/BitValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/values/BitValue.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/values/Function.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/values/Function.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/values/MutableBitList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/values/MutableBitList.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/values/SignalWidth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/values/SignalWidth.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/lucidv2/values/Value.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/lucidv2/values/Value.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/styles/AlchitryConstraintStyleProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/styles/AlchitryConstraintStyleProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/styles/LucidNewLineIndenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/styles/LucidNewLineIndenter.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/styles/LucidStyleProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/styles/LucidStyleProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/styles/StyleProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/styles/StyleProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/styles/VerilogIndentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/styles/VerilogIndentProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/styles/VerilogNewLineIndenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/styles/VerilogNewLineIndenter.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/styles/VerilogStyleProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/styles/VerilogStyleProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/constraints/AlchitryConstraintsExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/constraints/AlchitryConstraintsExtractor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/ArrayBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/ArrayBounds.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/BitWidthChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/BitWidthChecker.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/BoundsParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/BoundsParser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/BoundsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/BoundsProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/ConstExprParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/ConstExprParser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/ConstParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/ConstParser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/ConstProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/ConstProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/LucidDebugModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/LucidDebugModifier.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/LucidExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/LucidExtractor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/LucidGlobalExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/LucidGlobalExtractor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/LucidModuleExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/LucidModuleExtractor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/LucidModuleRenamer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/LucidModuleRenamer.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/ParamsParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/ParamsParser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/WidthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/WidthProvider.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/toVerilog/LucidConvertedHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/toVerilog/LucidConvertedHeader.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/toVerilog/LucidToVerilog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/toVerilog/LucidToVerilog.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/lucid/toVerilog/ReservedWords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/lucid/toVerilog/ReservedWords.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/verilog/VerilogConstExprParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/verilog/VerilogConstExprParser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/verilog/VerilogLucidModuleFixer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/verilog/VerilogLucidModuleFixer.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/tools/verilog/VerilogModuleListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/tools/verilog/VerilogModuleListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/types/ClockConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/types/ClockConstraint.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/types/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/types/Connection.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/types/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/types/Constant.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/types/Dff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/types/Dff.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/types/Fsm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/types/Fsm.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/types/PinConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/types/PinConstraint.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/types/Struct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/types/Struct.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/types/SyncLogic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/types/SyncLogic.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/types/Var.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/types/Var.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/verilog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/verilog/.gitignore -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/verilog/Verilog2001.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/verilog/Verilog2001.g4 -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/verilog/Verilog2001BaseListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/verilog/Verilog2001BaseListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/verilog/Verilog2001BaseVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/verilog/Verilog2001BaseVisitor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/verilog/Verilog2001Lexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/verilog/Verilog2001Lexer.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/verilog/Verilog2001Listener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/verilog/Verilog2001Listener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/verilog/Verilog2001Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/verilog/Verilog2001Parser.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/parsers/verilog/Verilog2001Visitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/parsers/verilog/Verilog2001Visitor.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/CoreGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/CoreGen.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/DebugInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/DebugInfo.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/Environment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/Environment.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/IPCore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/IPCore.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/Primitive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/Primitive.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/Project.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/Project.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/SourceFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/SourceFile.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/Tags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/Tags.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/VivadoIP.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/VivadoIP.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/builders/ISEBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/builders/ISEBuilder.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/builders/IceCubeBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/builders/IceCubeBuilder.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/builders/IceStormBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/builders/IceStormBuilder.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/builders/ProjectBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/builders/ProjectBuilder.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/project/builders/VivadoBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/project/builders/VivadoBuilder.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/AutoComplete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/AutoComplete.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/AutoFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/AutoFormatter.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/BracketUnderliner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/BracketUnderliner.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/IndentProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/IndentProvider.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/LineHighlighter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/LineHighlighter.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/LineStyler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/LineStyler.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/ParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/ParseException.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/StyleUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/StyleUtil.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/SyntaxError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/SyntaxError.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/style/ToolTipListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/style/ToolTipListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/tools/ParseTreeMultiWalker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/tools/ParseTreeMultiWalker.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/tools/ParserCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/tools/ParserCache.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomButton.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomCombo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomCombo.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomConsole.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomSearch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomSearch.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomSearchAndReplace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomSearchAndReplace.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomTab.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomTab.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomTable.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomTabs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomTabs.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomToggle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomToggle.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/CustomTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/CustomTree.kt -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/ImageChangedListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/ImageChangedListener.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/IoRegion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/IoRegion.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/Region.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/Region.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/ResizingImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/ResizingImage.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/SelectableSVG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/SelectableSVG.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/SignalSelector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/SignalSelector.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/TabChild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/TabChild.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/TabHotKeys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/TabHotKeys.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/TabTransfer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/TabTransfer.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/TextProgressBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/TextProgressBar.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/WaveSignal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/WaveSignal.java -------------------------------------------------------------------------------- /src/com/alchitry/labs/widgets/Waves.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/com/alchitry/labs/widgets/Waves.java -------------------------------------------------------------------------------- /src/org/eclipse/wb/swt/SWTResourceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchitry/Alchitry-Labs/HEAD/src/org/eclipse/wb/swt/SWTResourceManager.java --------------------------------------------------------------------------------