├── fpga └── leon3 │ ├── Altera │ └── src │ │ ├── CYCLONEII_COMPONENTS.VHD │ │ ├── DelayMemory.vhd │ │ ├── PLL0.vhd │ │ ├── PLL1.vhd │ │ ├── PLL2.vhd │ │ ├── PLL3.vhd │ │ ├── SbXPLL.vhd │ │ ├── SbxXDelayMemory.vhd │ │ ├── SyncRam1Gs.vhd │ │ ├── TriggerMemory.vhd │ │ ├── TriggerMemory4CH.vhd │ │ ├── altera_europa_support_lib.vhd │ │ ├── altera_mf.vhd │ │ ├── altera_mf_components.vhd │ │ ├── altera_primitives.vhd │ │ ├── altera_primitives_components.vhd │ │ ├── cycloneii_atoms.vhd │ │ ├── jtag_uart_0.vhd │ │ ├── lpm_pack.vhd │ │ └── vhdlsyn.txt │ ├── CPU │ ├── Bootloader │ │ ├── bin │ │ │ ├── bin-table.txt │ │ │ ├── bootloader.bin │ │ │ ├── bootloader.elf │ │ │ ├── compile.sh │ │ │ └── elf-table.txt │ │ └── src │ │ │ ├── ROM-template-post-ea.vhd │ │ │ ├── ROM-template-pre-ea.vhd │ │ │ ├── bootloader.c │ │ │ └── crt0_phi.S │ └── src │ │ ├── Arbiter-ea.vhd │ │ ├── BootloaderROM-bin-ea.vhd │ │ ├── BootloaderROM-elf-ea.vhd │ │ ├── CPUMemoryInterface-ea.vhd │ │ ├── Devices-p.vhd │ │ ├── SpecialFunctionRegister-ea.vhd │ │ ├── SpecialFunctionRegister-p.vhd │ │ ├── ZPU │ │ ├── trace.vhd │ │ ├── txt_util.vhd │ │ ├── zpu_config.vhd │ │ ├── zpu_core.vhd │ │ └── zpupkg.vhd │ │ └── vhdlsyn.txt │ ├── DownSampler │ ├── Octave │ │ ├── CreateBitStream.m │ │ ├── CreatePackage.m │ │ ├── FastFirCoeff-p.vhd │ │ ├── FastRampCoeff-p.vhd │ │ ├── FilterError.m │ │ ├── FirCoeff-p.vhd │ │ ├── FirCoeff.m │ │ ├── LongInputValues-p.vhd │ │ ├── M10.fda │ │ ├── M10.mat │ │ ├── M2.fda │ │ ├── M2.mat │ │ ├── M4.fda │ │ ├── M4.mat │ │ ├── RampCoeff-p.vhd │ │ ├── ShortInputValues-p.vhd │ │ ├── SinGen.m │ │ ├── Testpatterns.m │ │ ├── quant2c.m │ │ ├── vhdlsim.txt │ │ └── vhdlsyn.txt │ ├── Readme.txt │ ├── simAdderTreeFilter │ │ ├── sim.do │ │ └── wave.do │ ├── simDownSampler │ │ ├── sim.bat │ │ ├── sim.do │ │ └── wave.do │ ├── simFastAverage │ │ ├── sim.bat │ │ ├── sim.do │ │ └── wave.do │ ├── simFastPolyPhaseDecimator │ │ ├── sim.bat │ │ ├── sim.do │ │ └── wave.do │ ├── simPolyPhaseDecimator │ │ ├── sim.do │ │ └── wave.do │ ├── src │ │ ├── AdderTreeFilter-ea.vhd │ │ ├── DelayMemory.vhd │ │ ├── DownSampler-ea.vhd │ │ ├── FastAverage-ea.vhd │ │ ├── FastPolyPhaseDecimator-ea.vhd │ │ ├── LongFastPolyPhaseDecimator-ea.vhd │ │ ├── PolyphaseDecimator-p.vhd │ │ ├── TestbenchAdderTreeFilter-ea.vhd │ │ ├── TestbenchFastAverage-ea.vhd │ │ ├── TestbenchFastPolyphaseDecimator-ea.vhd │ │ ├── TestbenchPolyPhaseDecimator-ea.vhd │ │ ├── TestbenchTopDownSampler-ea.vhd │ │ ├── TopDownSampler-ea.vhd │ │ ├── TopFastPolyPhaseDecimator-ea.vhd │ │ ├── TopLongFastPolyPhaseDecimator-ea.vhd │ │ ├── TopPolyPhaseDecimator-ea.vhd │ │ ├── vhdlsim.txt │ │ └── vhdlsyn.txt │ ├── synAdderTreeFilter │ │ ├── AdderTreeFilter.qpf │ │ └── AdderTreeFilter.qsf │ ├── synFastAverage │ │ ├── FastAverage.qpf │ │ └── FastAverage.qsf │ ├── synFastPolyphaseDecimator │ │ ├── FastPolyphaseDecimator.qpf │ │ └── FastPolyphaseDecimator.qsf │ └── synLongFastPolyphaseDecimator │ │ ├── LongFastPolyphaseDecimator.qpf │ │ └── LongFastPolyphaseDecimator.qsf │ ├── ExtRAM │ └── src │ │ ├── SRamPriorityAccess-ea.vhd │ │ ├── SRamPriorityAccess-p.vhd │ │ └── vhdlsyn.txt │ ├── LedsKeys │ ├── sim │ │ ├── sim.do │ │ └── wave.do │ └── src │ │ ├── DSOConfig-p.vhd │ │ ├── LedsKeys-ea.vhd │ │ ├── LedsKeys-p.vhd │ │ ├── NobDecoder-ea.vhd │ │ ├── PWM-ea.vhd │ │ ├── StrobeGen-Rtl-a.vhd │ │ ├── StrobeGen-e.vhd │ │ ├── Testbench-ea.vhd │ │ ├── vhdlsim.txt │ │ └── vhdlsyn.txt │ ├── Scope │ ├── Octave │ │ ├── SinGen.m │ │ └── WavGen.m │ ├── simSandboxX │ │ ├── Makefile │ │ ├── sim.do │ │ ├── sram.srec │ │ ├── wave.do │ │ └── work.do │ ├── simW2000A │ │ ├── Makefile │ │ ├── Postlayout.do │ │ ├── ghdl.sh │ │ ├── prom.srec │ │ ├── sim.do │ │ ├── sim.sh │ │ ├── sram.srec │ │ ├── wave.do │ │ └── work.do │ ├── src │ │ ├── Global-p.vhd │ │ ├── NetlistWrapper-ea.vhd │ │ ├── TestbenchTopScope-ea.vhd │ │ ├── TopScope-ea.vhd │ │ ├── vhdlsim.txt │ │ └── vhdlsyn.txt │ ├── synSandboxX │ │ ├── SandboxX.qpf │ │ └── SandboxX.qsf │ └── synW2000A │ │ ├── W2000A.qpf │ │ ├── W2000A.qsf │ │ ├── W2000A.sdc │ │ └── W2000A.sof │ ├── SignalCapture │ ├── src │ │ ├── ADC-ea.vhd │ │ ├── PLL0.vhd │ │ ├── PLL1.vhd │ │ ├── PLL2.vhd │ │ ├── PLL3.vhd │ │ ├── PatternGenerator-ea.vhd │ │ ├── SbXPLL.vhd │ │ ├── SbxXSignalCapture-ea.vhd │ │ ├── SignalCapture-ea.vhd │ │ ├── SignalSelector-ea.vhd │ │ └── vhdlsyn.txt │ └── synSignalCapture │ │ ├── SignalCapture.qpf │ │ └── SignalCapture.qsf │ ├── TestFiles │ └── src │ │ ├── AsyncSRAM-ea.vhd │ │ ├── BhvADC-ea.vhd │ │ ├── BhvDisplay-ea.vhd │ │ ├── DAC_LTC2612-ea.vhd │ │ ├── DeMux_HCT238-ea.vhd │ │ ├── PtoS_HCT165-ea.vhd │ │ ├── StoP_MC14094b-ea.vhd │ │ ├── StoP_hc595-ea.vhd │ │ ├── Wavefiles-p.vhd │ │ ├── vhdlsim.txt │ │ └── vhdlsyn.txt │ ├── Trigger │ ├── Octave │ │ ├── FrameDisplay.m │ │ ├── SinGen.m │ │ └── WavGen.m │ ├── simTopTrigger │ │ ├── sim.bat │ │ ├── sim.do │ │ ├── wave.do │ │ └── work.do │ ├── src │ │ ├── DigitalTrigger-ea.vhd │ │ ├── ExtTriggerInput-ea.vhd │ │ ├── ExternalTrigger-ea.vhd │ │ ├── NormalTrigger-ea.vhd │ │ ├── TestbenchTopTrigger-ea.vhd │ │ ├── TopTrigger-ea.vhd │ │ ├── Trigger-p.vhd │ │ ├── TriggerMemory-ea.vhd │ │ ├── vhdlsim.txt │ │ └── vhdlsyn.txt │ └── synTopTrigger │ │ ├── TopTrigger.qpf │ │ └── TopTrigger.qsf │ ├── VGA │ ├── sim │ │ ├── sim.do │ │ ├── wave.do │ │ └── work.do │ └── src │ │ ├── DoubleBufferVGA-ea.vhd │ │ ├── PlaneVGActl-ea.vhd │ │ ├── SimpleVGA-ea.vhd │ │ ├── StrobeGen_var-a.vhd │ │ ├── StrobeGen_var-e.vhd │ │ ├── TestbenchDoubleBufferVGA-ea.vhd │ │ ├── TestbenchPlaneVGActl-ea.vhd │ │ ├── TestbenchSimpleVGA-ea.vhd │ │ ├── VGA-p.vhd │ │ ├── vhdlsim.txt │ │ └── vhdlsyn.txt │ ├── documentation │ └── fpga │ │ └── reference │ │ └── W2000L_reference_manual.tex │ ├── grlib-W2000A │ ├── Makefile │ ├── bin │ │ ├── Makefile │ │ ├── Makefile.config │ │ ├── ahbrom.c │ │ ├── atc_run_multi.tcl │ │ ├── cds.lib │ │ ├── def.npl │ │ ├── echo.bat │ │ ├── editise.txt │ │ ├── gpl.sed │ │ ├── gr.sed │ │ ├── libs.txt │ │ ├── modelsim.ini │ │ ├── mt1.mpf │ │ ├── quartus.qpf │ │ ├── quartus.qsf_head │ │ ├── route │ │ ├── route_lattice │ │ ├── route_ngc │ │ ├── runvsim.do │ │ ├── sonata.sws │ │ ├── sonata1.sws │ │ ├── sonata2.sws │ │ ├── synplify.prj │ │ ├── tkconfig │ │ │ ├── .config │ │ │ ├── .config.old │ │ │ ├── .null │ │ │ ├── Makefile │ │ │ ├── config-language.txt │ │ │ ├── config.h │ │ │ ├── config.help │ │ │ ├── config.in │ │ │ ├── defconfig │ │ │ ├── header.tk │ │ │ ├── mkdevice.c │ │ │ ├── tail.tk │ │ │ ├── tkcond.c │ │ │ ├── tkgen.c │ │ │ ├── tkparse.c │ │ │ └── tkparse.h │ │ ├── top.dc │ │ ├── top.rc │ │ ├── wish │ │ ├── xgrlib.tcl │ │ ├── xstmod │ │ ├── xstrun │ │ ├── xstverilog │ │ └── xstvhdl │ ├── boards │ │ ├── DSO_W2000A │ │ │ ├── Makefile.inc │ │ │ ├── default.sdc │ │ │ └── leon3mini.qsf │ │ ├── SandboxX │ │ │ ├── FreeBus │ │ │ │ ├── FreeBus.aps │ │ │ │ └── FreeBus.c │ │ │ ├── Makefile.inc │ │ │ ├── default.sdc │ │ │ └── leon3mini.qsf │ │ ├── ge-hpe-mini │ │ │ ├── Makefile.inc │ │ │ ├── default.sdc │ │ │ └── leon3mini.qsf │ │ └── gr-xc3s-1500 │ │ │ ├── Makefile.inc │ │ │ ├── default.sdc │ │ │ ├── default.ut │ │ │ ├── fpga.cmd │ │ │ ├── gr-xc3s_top_small.jpg │ │ │ ├── leon3mp.ucf │ │ │ └── prom.cmd │ ├── designs │ │ ├── leon3-ge-hpe-mini │ │ │ ├── .config │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── ahbrom.vhd │ │ │ ├── config.help │ │ │ ├── config.in │ │ │ ├── config.vhd │ │ │ ├── config.vhd.h │ │ │ ├── config.vhd.in │ │ │ ├── defconfig │ │ │ ├── indata │ │ │ ├── lconfig.tk │ │ │ ├── leon3mini.h │ │ │ ├── leon3mini.vhd │ │ │ ├── linkprom │ │ │ ├── prom.h │ │ │ ├── prom.srec │ │ │ ├── sdram.srec │ │ │ ├── sram.srec │ │ │ ├── systest.c │ │ │ ├── testbench.vhd │ │ │ ├── tkconfig.h │ │ │ └── wave.do │ │ ├── leon3-gr-xc3s-1500 │ │ │ ├── .config │ │ │ ├── Makefile │ │ │ ├── ahbrom.vhd │ │ │ ├── config.help │ │ │ ├── config.in │ │ │ ├── config.vhd │ │ │ ├── config.vhd.h │ │ │ ├── config.vhd.in │ │ │ ├── default.sdc │ │ │ ├── defconfig │ │ │ ├── disk.srec │ │ │ ├── doc │ │ │ │ ├── Makefile │ │ │ │ └── leon3-gr-xc3s-1500.pdf │ │ │ ├── indata │ │ │ ├── index.html │ │ │ ├── lconfig.tk │ │ │ ├── leon3mp.ucf │ │ │ ├── leon3mp.vhd │ │ │ ├── leon3mp.xcf │ │ │ ├── linkprom │ │ │ ├── prom.h │ │ │ ├── prom.srec │ │ │ ├── sdram.srec │ │ │ ├── sram.srec │ │ │ ├── systest.c │ │ │ ├── testbench.vhd │ │ │ ├── tkconfig.h │ │ │ ├── vga_clkgen.vhd │ │ │ └── wave.do │ │ ├── leon3-sandboxx │ │ │ ├── .config │ │ │ ├── DSOConfig-p.vhd │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── W2000ROM.vhd │ │ │ ├── ahbrom.vhd │ │ │ ├── config.help │ │ │ ├── config.in │ │ │ ├── config.vhd │ │ │ ├── config.vhd.h │ │ │ ├── config.vhd.in │ │ │ ├── defconfig │ │ │ ├── indata │ │ │ ├── lconfig.tk │ │ │ ├── leon3mini.h │ │ │ ├── leon3mini.vhd │ │ │ ├── linkprom │ │ │ ├── prom.h │ │ │ ├── prom.srec │ │ │ ├── sram.bin │ │ │ ├── systest.c │ │ │ ├── testbench.vhd │ │ │ └── tkconfig.h │ │ └── leon3-w2000a │ │ │ ├── .config │ │ │ ├── .config.old │ │ │ ├── DSOConfig-p.vhd │ │ │ ├── Makefile │ │ │ ├── W2000ROM.vhd │ │ │ ├── ahbrom.vhd │ │ │ ├── config.h │ │ │ ├── config.help │ │ │ ├── config.in │ │ │ ├── config.vhd │ │ │ ├── config.vhd.h │ │ │ ├── config.vhd.in │ │ │ ├── config_test.h │ │ │ ├── defconfig │ │ │ ├── ghdl.bat │ │ │ ├── ghdl.sh │ │ │ ├── indata │ │ │ ├── l3.do │ │ │ ├── lconfig.tk │ │ │ ├── leon3.do │ │ │ ├── leon3mini.h │ │ │ ├── leon3mini.vhd │ │ │ ├── leon3mini_test.h │ │ │ ├── libs.do │ │ │ ├── libs.txt │ │ │ ├── linkprom │ │ │ ├── prom.h │ │ │ ├── prom.srec │ │ │ ├── systest.c │ │ │ ├── testbench.vhd │ │ │ ├── tkconfig.h │ │ │ └── wave.do │ ├── doc │ │ ├── Changelog.txt │ │ ├── grip.pdf │ │ ├── grlib.pdf │ │ └── sparcv8.pdf │ ├── grlib.html │ ├── lib │ │ ├── DSO │ │ │ ├── SFR │ │ │ │ ├── SFR-ea.vhd │ │ │ │ ├── SFR-p.vhd │ │ │ │ ├── SFR.in │ │ │ │ ├── SFR.in.h │ │ │ │ ├── SFR.in.help │ │ │ │ ├── SFR.in.vhd │ │ │ │ ├── SignalAccess-ea.vhd │ │ │ │ ├── SignalAccess-p.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ └── shram │ │ │ │ ├── FastSRAMctrl-ea.vhd │ │ │ │ ├── shram-ea.vhd │ │ │ │ ├── shram-p.vhd │ │ │ │ ├── shram.in │ │ │ │ ├── shram.in.h │ │ │ │ ├── shram.in.help │ │ │ │ ├── shram.in.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vhdlsyn.txt │ │ ├── contrib │ │ │ ├── devices │ │ │ │ ├── devices_con.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ └── libs.txt │ │ ├── cypress │ │ │ ├── dirs.txt │ │ │ ├── libs.txt │ │ │ └── ssram │ │ │ │ ├── components.vhd │ │ │ │ ├── cy7c1354b.vhd │ │ │ │ ├── cy7c1380d.vhd │ │ │ │ ├── package_utility.vhd │ │ │ │ └── vhdlsim.txt │ │ ├── esa │ │ │ ├── dirs.txt │ │ │ ├── memoryctrl │ │ │ │ ├── mctrl.in │ │ │ │ ├── mctrl.in.h │ │ │ │ ├── mctrl.in.help │ │ │ │ ├── mctrl.in.vhd │ │ │ │ ├── mctrl.vhd │ │ │ │ ├── memoryctrl.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── misc │ │ │ │ ├── l2uart.vhd │ │ │ │ ├── misc_esa.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ └── pci │ │ │ │ ├── pci_arb.in │ │ │ │ ├── pci_arb.in.h │ │ │ │ ├── pci_arb.in.help │ │ │ │ ├── pci_arb.in.vhd │ │ │ │ ├── pci_arb.vhd │ │ │ │ ├── pci_arb_pkg.vhd │ │ │ │ ├── pciarb.vhd │ │ │ │ ├── pcicomp.vhd │ │ │ │ └── vhdlsyn.txt │ │ ├── eth │ │ │ ├── comp │ │ │ │ ├── ethcomp.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── core │ │ │ │ ├── eth_ahb_mst.vhd │ │ │ │ ├── eth_rstgen.vhd │ │ │ │ ├── greth_pkg.vhd │ │ │ │ ├── greth_rx.vhd │ │ │ │ ├── greth_tx.vhd │ │ │ │ ├── grethc.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ └── wrapper │ │ │ │ ├── greth_gbit_gen.vhd │ │ │ │ ├── greth_gen.vhd │ │ │ │ └── vhdlsyn.txt │ │ ├── fmf │ │ │ ├── dirs.txt │ │ │ ├── flash │ │ │ │ ├── flash.vhd │ │ │ │ ├── m25p80.ftm │ │ │ │ ├── m25p80.vhd │ │ │ │ ├── s25fl064a.ftm │ │ │ │ ├── s25fl064a.vhd │ │ │ │ └── vhdlsim.txt │ │ │ └── utilities │ │ │ │ ├── conversions.vhd │ │ │ │ ├── gen_utils.vhd │ │ │ │ └── vhdlsim.txt │ │ ├── gaisler │ │ │ ├── ambatest │ │ │ │ ├── README_ahbtbp.txt │ │ │ │ ├── ahb_tbfunct.vhd │ │ │ │ ├── ahbmst_em.vhd │ │ │ │ ├── ahbslv_em.vhd │ │ │ │ ├── ahbtbm.vhd │ │ │ │ ├── ahbtbp.vhd │ │ │ │ ├── ahbtbs.vhd │ │ │ │ ├── ambatest.vhd │ │ │ │ └── vhdlsim.txt │ │ │ ├── arith │ │ │ │ ├── arith.vhd │ │ │ │ ├── div32.vhd │ │ │ │ ├── mul32.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── ata │ │ │ │ ├── ata.in │ │ │ │ ├── ata.in.h │ │ │ │ ├── ata.in.help │ │ │ │ ├── ata.in.vhd │ │ │ │ ├── ata.vhd │ │ │ │ ├── ata_inf.vhd │ │ │ │ ├── atactrl.vhd │ │ │ │ ├── atactrl_dma.vhd │ │ │ │ ├── atactrl_nodma.vhd │ │ │ │ ├── atahost_ahbmst.vhd │ │ │ │ ├── atahost_amba_slave.vhd │ │ │ │ ├── atahost_dma_fifo.vhd │ │ │ │ ├── ocidec2_amba_slave.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── can │ │ │ │ ├── can.vhd │ │ │ │ ├── can_mc.in │ │ │ │ ├── can_mc.in.h │ │ │ │ ├── can_mc.in.help │ │ │ │ ├── can_mc.in.vhd │ │ │ │ ├── can_mc.vhd │ │ │ │ ├── can_mod.vhd │ │ │ │ ├── can_oc.in │ │ │ │ ├── can_oc.in.h │ │ │ │ ├── can_oc.in.help │ │ │ │ ├── can_oc.in.vhd │ │ │ │ ├── can_oc.vhd │ │ │ │ ├── can_rd.vhd │ │ │ │ ├── canmux.vhd │ │ │ │ ├── grcan.in │ │ │ │ ├── grcan.in.h │ │ │ │ ├── grcan.in.help │ │ │ │ ├── grcan.in.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── ddr │ │ │ │ ├── ahb_slv.vhd │ │ │ │ ├── ddr2sp.in │ │ │ │ ├── ddr2sp.in.h │ │ │ │ ├── ddr2sp.in.help │ │ │ │ ├── ddr2sp.in.vhd │ │ │ │ ├── ddr2sp16a.vhd │ │ │ │ ├── ddr2sp32a.vhd │ │ │ │ ├── ddr2sp64a.vhd │ │ │ │ ├── ddr2spa.vhd │ │ │ │ ├── ddr_phy.vhd │ │ │ │ ├── ddrctrl.in │ │ │ │ ├── ddrctrl.in.h │ │ │ │ ├── ddrctrl.in.help │ │ │ │ ├── ddrctrl.in.vhd │ │ │ │ ├── ddrctrl.vhd │ │ │ │ ├── ddrrec.vhd │ │ │ │ ├── ddrsp.in │ │ │ │ ├── ddrsp.in.h │ │ │ │ ├── ddrsp.in.help │ │ │ │ ├── ddrsp.in.vhd │ │ │ │ ├── ddrsp.vhd │ │ │ │ ├── ddrsp16a.vhd │ │ │ │ ├── ddrsp32a.vhd │ │ │ │ ├── ddrsp64a.vhd │ │ │ │ ├── ddrspa.vhd │ │ │ │ ├── hs.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ ├── greth │ │ │ │ ├── ethernet_mac.vhd │ │ │ │ ├── greth.in │ │ │ │ ├── greth.in.h │ │ │ │ ├── greth.in.help │ │ │ │ ├── greth.in.vhd │ │ │ │ ├── greth.vhd │ │ │ │ ├── greth_gbit.vhd │ │ │ │ ├── grethm.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── jtag │ │ │ │ ├── ahbjtag.vhd │ │ │ │ ├── ahbjtag_bsd.vhd │ │ │ │ ├── jtag.in │ │ │ │ ├── jtag.in.h │ │ │ │ ├── jtag.in.help │ │ │ │ ├── jtag.in.vhd │ │ │ │ ├── jtag.vhd │ │ │ │ ├── jtagcom.vhd │ │ │ │ ├── jtagtst.vhd │ │ │ │ ├── libjtagcom.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vhdlsyn.txt │ │ │ ├── leon3 │ │ │ │ ├── acache.vhd │ │ │ │ ├── cache.vhd │ │ │ │ ├── cachemem.vhd │ │ │ │ ├── cpu_disasx.vhd │ │ │ │ ├── dcache.vhd │ │ │ │ ├── dsu3.vhd │ │ │ │ ├── dsu3x.vhd │ │ │ │ ├── grfpushwx.vhd │ │ │ │ ├── grfpwx.vhd │ │ │ │ ├── grfpwxsh.vhd │ │ │ │ ├── grlfpwx.vhd │ │ │ │ ├── icache.vhd │ │ │ │ ├── irqmp.in │ │ │ │ ├── irqmp.in.h │ │ │ │ ├── irqmp.in.help │ │ │ │ ├── irqmp.in.vhd │ │ │ │ ├── irqmp.vhd │ │ │ │ ├── iu3.vhd │ │ │ │ ├── leon3.in │ │ │ │ ├── leon3.in.h │ │ │ │ ├── leon3.in.help │ │ │ │ ├── leon3.in.vhd │ │ │ │ ├── leon3.vhd │ │ │ │ ├── leon3cg.vhd │ │ │ │ ├── leon3s.vhd │ │ │ │ ├── leon3sh.vhd │ │ │ │ ├── libcache.vhd │ │ │ │ ├── libiu.vhd │ │ │ │ ├── libmmu.vhd │ │ │ │ ├── libproc3.vhd │ │ │ │ ├── mfpwx.vhd │ │ │ │ ├── mmu.vhd │ │ │ │ ├── mmu_acache.vhd │ │ │ │ ├── mmu_cache.vhd │ │ │ │ ├── mmu_dcache.vhd │ │ │ │ ├── mmu_icache.vhd │ │ │ │ ├── mmuconfig.vhd │ │ │ │ ├── mmuiface.vhd │ │ │ │ ├── mmulru.vhd │ │ │ │ ├── mmulrue.vhd │ │ │ │ ├── mmutlb.vhd │ │ │ │ ├── mmutlbcam.vhd │ │ │ │ ├── mmutw.vhd │ │ │ │ ├── proc3.vhd │ │ │ │ ├── tbufmem.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── leon3ft │ │ │ │ └── vhdlsyn.txt │ │ │ ├── memctrl │ │ │ │ ├── memctrl.vhd │ │ │ │ ├── sdctrl.in │ │ │ │ ├── sdctrl.in.h │ │ │ │ ├── sdctrl.in.help │ │ │ │ ├── sdctrl.in.vhd │ │ │ │ ├── sdctrl.vhd │ │ │ │ ├── sdmctrl.vhd │ │ │ │ ├── spimctrl.in │ │ │ │ ├── spimctrl.in.h │ │ │ │ ├── spimctrl.in.help │ │ │ │ ├── spimctrl.in.vhd │ │ │ │ ├── spimctrl.vhd │ │ │ │ ├── srctrl.in │ │ │ │ ├── srctrl.in.h │ │ │ │ ├── srctrl.in.help │ │ │ │ ├── srctrl.in.vhd │ │ │ │ ├── srctrl.vhd │ │ │ │ ├── ssrctrl.in │ │ │ │ ├── ssrctrl.in.h │ │ │ │ ├── ssrctrl.in.help │ │ │ │ ├── ssrctrl.in.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── misc │ │ │ │ ├── ahbdma.vhd │ │ │ │ ├── ahbmst.vhd │ │ │ │ ├── ahbram.in │ │ │ │ ├── ahbram.in.h │ │ │ │ ├── ahbram.in.help │ │ │ │ ├── ahbram.in.vhd │ │ │ │ ├── ahbram.vhd │ │ │ │ ├── ahbrom.in │ │ │ │ ├── ahbrom.in.h │ │ │ │ ├── ahbrom.in.help │ │ │ │ ├── ahbrom.in.vhd │ │ │ │ ├── ahbstat.in │ │ │ │ ├── ahbstat.in.h │ │ │ │ ├── ahbstat.in.help │ │ │ │ ├── ahbstat.in.vhd │ │ │ │ ├── ahbstat.vhd │ │ │ │ ├── ahbtrace.vhd │ │ │ │ ├── apbps2.vhd │ │ │ │ ├── apbvga.vhd │ │ │ │ ├── charrom.vhd │ │ │ │ ├── charrom_package.vhd │ │ │ │ ├── gptimer.in │ │ │ │ ├── gptimer.in.h │ │ │ │ ├── gptimer.in.help │ │ │ │ ├── gptimer.in.vhd │ │ │ │ ├── gptimer.vhd │ │ │ │ ├── grgpio.in │ │ │ │ ├── grgpio.in.h │ │ │ │ ├── grgpio.in.help │ │ │ │ ├── grgpio.in.vhd │ │ │ │ ├── grgpio.vhd │ │ │ │ ├── i2c.in │ │ │ │ ├── i2c.in.h │ │ │ │ ├── i2c.in.help │ │ │ │ ├── i2c.in.vhd │ │ │ │ ├── i2cmst.vhd │ │ │ │ ├── i2cslv.in │ │ │ │ ├── i2cslv.in.h │ │ │ │ ├── i2cslv.in.help │ │ │ │ ├── i2cslv.in.vhd │ │ │ │ ├── i2cslv.vhd │ │ │ │ ├── logan.vhd │ │ │ │ ├── misc.vhd │ │ │ │ ├── ps2.in │ │ │ │ ├── ps2.in.h │ │ │ │ ├── ps2.in.help │ │ │ │ ├── ps2.in.vhd │ │ │ │ ├── ps2vga.in │ │ │ │ ├── ps2vga.in.h │ │ │ │ ├── ps2vga.in.help │ │ │ │ ├── ps2vga.in.vhd │ │ │ │ ├── rstgen.vhd │ │ │ │ ├── spictrl.in │ │ │ │ ├── spictrl.in.h │ │ │ │ ├── spictrl.in.help │ │ │ │ ├── spictrl.in.vhd │ │ │ │ ├── spictrl.vhd │ │ │ │ ├── svgactrl.in │ │ │ │ ├── svgactrl.in.h │ │ │ │ ├── svgactrl.in.help │ │ │ │ ├── svgactrl.in.vhd │ │ │ │ ├── svgactrl.vhd │ │ │ │ ├── vhdlsyn.txt │ │ │ │ ├── wild.vhd │ │ │ │ └── wild2ahb.vhd │ │ │ ├── net │ │ │ │ ├── edcl.in │ │ │ │ ├── edcl.in.h │ │ │ │ ├── edcl.in.help │ │ │ │ ├── edcl.in.vhd │ │ │ │ ├── net.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── pci │ │ │ │ ├── dmactrl.vhd │ │ │ │ ├── doc │ │ │ │ │ ├── DMA_ctrl.doc │ │ │ │ │ ├── PCI_Target_Master.doc │ │ │ │ │ └── PCI_lazydog.doc │ │ │ │ ├── pci.in │ │ │ │ ├── pci.in.h │ │ │ │ ├── pci.in.help │ │ │ │ ├── pci.in.vhd │ │ │ │ ├── pci.vhd │ │ │ │ ├── pci_mt.vhd │ │ │ │ ├── pci_mtf.in │ │ │ │ ├── pci_mtf.vhd │ │ │ │ ├── pci_target.in │ │ │ │ ├── pci_target.vhd │ │ │ │ ├── pci_tbfunct.vhd │ │ │ │ ├── pciahbmst.vhd │ │ │ │ ├── pcidma.in │ │ │ │ ├── pcidma.vhd │ │ │ │ ├── pcilib.vhd │ │ │ │ ├── pcipads.vhd │ │ │ │ ├── pcitb.vhd │ │ │ │ ├── pcitb_arb.vhd │ │ │ │ ├── pcitb_clkgen.vhd │ │ │ │ ├── pcitb_master.vhd │ │ │ │ ├── pcitb_master_script.vhd │ │ │ │ ├── pcitb_monitor.vhd │ │ │ │ ├── pcitb_target.vhd │ │ │ │ ├── pcitrace.in │ │ │ │ ├── pcitrace.in.h │ │ │ │ ├── pcitrace.in.help │ │ │ │ ├── pcitrace.in.vhd │ │ │ │ ├── pcitrace.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vhdlsyn.txt │ │ │ ├── sim │ │ │ │ ├── ahbrep.vhd │ │ │ │ ├── ata_device.vhd │ │ │ │ ├── i2c_slave_model.v │ │ │ │ ├── phy.vhd │ │ │ │ ├── sim.vhd │ │ │ │ ├── sram.vhd │ │ │ │ ├── sram16.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vlogsim.txt │ │ │ ├── spacewire │ │ │ │ ├── grspw.vhd │ │ │ │ ├── grspw2.vhd │ │ │ │ ├── grspwm.vhd │ │ │ │ ├── spacewire.in │ │ │ │ ├── spacewire.in.h │ │ │ │ ├── spacewire.in.help │ │ │ │ ├── spacewire.in.vhd │ │ │ │ ├── spacewire.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── uart │ │ │ │ ├── ahbuart.vhd │ │ │ │ ├── apbuart.vhd │ │ │ │ ├── dcom.in │ │ │ │ ├── dcom.in.h │ │ │ │ ├── dcom.in.help │ │ │ │ ├── dcom.in.vhd │ │ │ │ ├── dcom.vhd │ │ │ │ ├── dcom_uart.vhd │ │ │ │ ├── libdcom.vhd │ │ │ │ ├── uart.vhd │ │ │ │ ├── uart1.in │ │ │ │ ├── uart1.in.h │ │ │ │ ├── uart1.in.help │ │ │ │ ├── uart1.in.vhd │ │ │ │ ├── uart2.in │ │ │ │ ├── uart2.in.h │ │ │ │ ├── uart2.in.help │ │ │ │ ├── uart2.in.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ └── usb │ │ │ │ ├── grusb.vhd │ │ │ │ ├── grusb_dcl.in │ │ │ │ ├── grusb_dcl.in.h │ │ │ │ ├── grusb_dcl.in.help │ │ │ │ ├── grusb_dcl.in.vhd │ │ │ │ ├── grusbdc.in │ │ │ │ ├── grusbdc.in.h │ │ │ │ ├── grusbdc.in.help │ │ │ │ ├── grusbdc.in.vhd │ │ │ │ ├── grusbhc.in │ │ │ │ ├── grusbhc.in.h │ │ │ │ ├── grusbhc.in.help │ │ │ │ ├── grusbhc.in.vhd │ │ │ │ └── vhdlsyn.txt │ │ ├── gleichmann │ │ │ ├── ac97 │ │ │ │ ├── ac97.vhd │ │ │ │ ├── ac97_oc.in │ │ │ │ ├── ac97_oc.in.h │ │ │ │ ├── ac97_oc.in.help │ │ │ │ ├── ac97_oc.in.vhd │ │ │ │ ├── ac97_oc.vhd │ │ │ │ ├── vhdlsyn.txt │ │ │ │ └── vlogsyn.txt │ │ │ ├── ahb2hpi │ │ │ │ ├── ahb2hpi.in │ │ │ │ ├── ahb2hpi.in.h │ │ │ │ ├── ahb2hpi.in.help │ │ │ │ ├── ahb2hpi.in.vhd │ │ │ │ ├── ahb2hpi2_ea.vhd │ │ │ │ ├── hpi_p.vhd │ │ │ │ ├── hpi_ram_ea.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── clockgen │ │ │ │ ├── clockgenerator_ea.vhd │ │ │ │ ├── ge_clkgen_p.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dac │ │ │ │ ├── adc_sigdelt_ea.vhd │ │ │ │ ├── adcdac.in │ │ │ │ ├── adcdac.in.h │ │ │ │ ├── adcdac.in.help │ │ │ │ ├── adcdac.in.vhd │ │ │ │ ├── adcdac_ea.vhd │ │ │ │ ├── dac_ahb.in │ │ │ │ ├── dac_ahb.in.h │ │ │ │ ├── dac_ahb.in.help │ │ │ │ ├── dac_ahb.in.vhd │ │ │ │ ├── dac_ahb_ea.vhd │ │ │ │ ├── dac_p.vhd │ │ │ │ ├── dac_sigdelt_ea.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ ├── i2c │ │ │ │ ├── i2c.vhd │ │ │ │ ├── partoi2s.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── miscellaneous │ │ │ │ ├── ahb2wb.v │ │ │ │ ├── miscellaneous_p.vhd │ │ │ │ ├── postponer.v │ │ │ │ ├── vhdlsyn.txt │ │ │ │ └── vlogsyn.txt │ │ │ ├── multiio │ │ │ │ ├── multiio.in │ │ │ │ ├── multiio.in.h │ │ │ │ ├── multiio.in.help │ │ │ │ ├── multiio.in.vhd │ │ │ │ ├── multiio_ea.vhd │ │ │ │ ├── multiio_p.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── sim │ │ │ │ ├── phy_ext.vhd │ │ │ │ ├── spi_slave_model.v │ │ │ │ ├── txt_util.vhd │ │ │ │ ├── uart_ext.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vlogsim.txt │ │ │ └── spi │ │ │ │ ├── spi_oc.in │ │ │ │ ├── spi_oc.in.h │ │ │ │ ├── spi_oc.in.help │ │ │ │ ├── spi_oc.in.vhd │ │ │ │ ├── spi_oc_ea.vhd │ │ │ │ ├── spi_p.vhd │ │ │ │ ├── spi_xmit_ea.vhd │ │ │ │ ├── sspi_p.vhd │ │ │ │ └── vhdlsyn.txt │ │ ├── grlib │ │ │ ├── amba │ │ │ │ ├── ahbctrl.vhd │ │ │ │ ├── amba.in │ │ │ │ ├── amba.in.h │ │ │ │ ├── amba.in.help │ │ │ │ ├── amba.in.vhd │ │ │ │ ├── amba.vhd │ │ │ │ ├── apbctrl.vhd │ │ │ │ ├── defmst.vhd │ │ │ │ ├── devices.vhd │ │ │ │ ├── dma2ahb.vhd │ │ │ │ ├── dma2ahb_pkg.vhd │ │ │ │ ├── dma2ahb_tp.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ ├── modgen │ │ │ │ ├── leaves.vhd │ │ │ │ ├── multlib.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── sparc │ │ │ │ ├── cpu_disas.vhd │ │ │ │ ├── sparc.vhd │ │ │ │ ├── sparc_disas.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vhdlsyn.txt │ │ │ ├── stdlib │ │ │ │ ├── stdio.vhd │ │ │ │ ├── stdio_tb.vhd │ │ │ │ ├── stdlib.vhd │ │ │ │ ├── version.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vhdlsyn.txt │ │ │ └── util │ │ │ │ ├── debug.in │ │ │ │ ├── debug.in.h │ │ │ │ ├── debug.in.help │ │ │ │ ├── debug.in.vhd │ │ │ │ ├── fpudummy.vhd │ │ │ │ ├── util.vhd │ │ │ │ └── vhdlsim.txt │ │ ├── gsi │ │ │ ├── dirs.txt │ │ │ └── ssram │ │ │ │ ├── core_burst.vhd │ │ │ │ ├── functions.vhd │ │ │ │ ├── g880e18bt.vhd │ │ │ │ └── vhdlsim.txt │ │ ├── hynix │ │ │ ├── ddr2 │ │ │ │ ├── HY5PS121621F.vhd │ │ │ │ ├── HY5PS121621F_PACK.vhd │ │ │ │ ├── components.vhd │ │ │ │ └── vhdlsim.txt │ │ │ ├── dirs.txt │ │ │ └── libs.txt │ │ ├── libs.txt │ │ ├── micron │ │ │ ├── ddr │ │ │ │ ├── ddr2.v │ │ │ │ ├── mobile_ddr.v │ │ │ │ ├── mt46v16m16.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vlogsim.txt │ │ │ ├── dirs.txt │ │ │ ├── libs.txt │ │ │ └── sdram │ │ │ │ ├── components.vhd │ │ │ │ ├── mobile_sdr.v │ │ │ │ ├── mt48lc16m16a2.vhd │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── vlogsim.txt │ │ ├── openchip │ │ │ ├── charlcd │ │ │ │ ├── apbcharlcd.vhd │ │ │ │ ├── charlcd.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── devices │ │ │ │ ├── devices_ocp.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ ├── doc │ │ │ │ ├── readme.txt │ │ │ │ └── suidemo.c │ │ │ ├── gpio │ │ │ │ ├── apbgpio.vhd │ │ │ │ ├── gpio.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── libs.txt │ │ │ └── sui │ │ │ │ ├── apbsui.vhd │ │ │ │ ├── sui.vhd │ │ │ │ └── vhdlsyn.txt │ │ ├── opencores │ │ │ ├── ac97 │ │ │ │ ├── ac97_top.v │ │ │ │ └── vlogsyn.txt │ │ │ ├── ata │ │ │ │ ├── ata_device_oc.v │ │ │ │ ├── atahost_controller.vhd │ │ │ │ ├── atahost_dma_actrl.vhd │ │ │ │ ├── atahost_dma_fifo.vhd │ │ │ │ ├── atahost_dma_tctrl.vhd │ │ │ │ ├── atahost_pio_actrl.vhd │ │ │ │ ├── atahost_pio_controller.vhd │ │ │ │ ├── atahost_pio_tctrl.vhd │ │ │ │ ├── ocidec2_controller.vhd │ │ │ │ ├── ro_cnt.vhd │ │ │ │ ├── ud_cnt.vhd │ │ │ │ ├── vhdlsyn.txt │ │ │ │ └── vlogsim.txt │ │ │ ├── can │ │ │ │ ├── can_top.vhd │ │ │ │ ├── can_top_core_sync.vhd │ │ │ │ ├── cancomp.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ ├── i2c │ │ │ │ ├── i2c_master_bit_ctrl.vhd │ │ │ │ ├── i2c_master_byte_ctrl.vhd │ │ │ │ ├── i2coc.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── occomp │ │ │ │ ├── occomp.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ └── spi │ │ │ │ ├── simple_spi_top.v │ │ │ │ └── vlogsyn.txt │ │ ├── spansion │ │ │ ├── dirs.txt │ │ │ └── flash │ │ │ │ └── vhdlsim.txt │ │ ├── spw │ │ │ ├── comp │ │ │ │ ├── spwcomp.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ └── wrapper │ │ │ │ ├── grspw_gen.vhd │ │ │ │ └── vhdlsyn.txt │ │ ├── synplify │ │ │ ├── dirs.txt │ │ │ └── sim │ │ │ │ ├── synattr.vhd │ │ │ │ ├── synplify.vhd │ │ │ │ └── vhdlsim.txt │ │ ├── tech │ │ │ ├── altera │ │ │ │ ├── dirs.txt │ │ │ │ └── simprims │ │ │ │ │ ├── altera_primitives.vhd │ │ │ │ │ ├── altera_primitives_components.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ ├── altera_mf │ │ │ │ ├── dirs.txt │ │ │ │ └── simprims │ │ │ │ │ ├── altera_mf.vhd │ │ │ │ │ ├── altera_mf_components.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ ├── apa │ │ │ │ ├── components │ │ │ │ │ ├── apa.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ │ └── dirs.txt │ │ │ ├── atc18 │ │ │ │ ├── components │ │ │ │ │ ├── atmel_components.vhd │ │ │ │ │ ├── atmel_simprims.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ │ └── dirs.txt │ │ │ ├── axcelerator │ │ │ │ ├── components │ │ │ │ │ ├── axcelerator.vhd │ │ │ │ │ ├── axcelerator_components.vhd │ │ │ │ │ ├── axcelerator_components_full.vhd │ │ │ │ │ ├── axcelerator_components_small.vhd │ │ │ │ │ ├── axcelerator_full.vhd │ │ │ │ │ ├── axcelerator_small.vhd │ │ │ │ │ ├── axcelerator_vtables.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ │ └── dirs.txt │ │ │ ├── cycloneiii │ │ │ │ ├── dirs.txt │ │ │ │ └── simprims │ │ │ │ │ ├── cycloneiii_atoms.vhd │ │ │ │ │ ├── cycloneiii_components.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ ├── dw02 │ │ │ │ ├── comp │ │ │ │ │ ├── DW02_components.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ │ └── dirs.txt │ │ │ ├── ec │ │ │ │ ├── dirs.txt │ │ │ │ └── orca │ │ │ │ │ ├── ORCA_L.vhd │ │ │ │ │ ├── global.vhd │ │ │ │ │ ├── mem3.vhd │ │ │ │ │ ├── orca.vhd │ │ │ │ │ ├── orca_ecmem.vhd │ │ │ │ │ ├── orcacomp.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ ├── eclipsee │ │ │ │ ├── dirs.txt │ │ │ │ └── simprims │ │ │ │ │ ├── eclipse.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ ├── proasic3 │ │ │ │ ├── components │ │ │ │ │ ├── proasic3.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ │ └── dirs.txt │ │ │ ├── simprim │ │ │ │ ├── dirs.txt │ │ │ │ └── vcomponents │ │ │ │ │ ├── vcomponents.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ ├── snps │ │ │ │ └── dw02 │ │ │ │ │ ├── comp │ │ │ │ │ ├── DW02_components.vhd │ │ │ │ │ └── vhdlsyn.txt │ │ │ │ │ └── dirs.txt │ │ │ ├── stratixii │ │ │ │ ├── dirs.txt │ │ │ │ └── simprims │ │ │ │ │ ├── stratixii_atoms.vhd │ │ │ │ │ ├── stratixii_components.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ ├── stratixiii │ │ │ │ ├── dirs.txt │ │ │ │ └── simprims │ │ │ │ │ ├── stratixiii_atoms.vhd │ │ │ │ │ ├── stratixiii_components.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ ├── umc18 │ │ │ │ ├── components │ │ │ │ │ ├── umc_components.vhd │ │ │ │ │ ├── umc_simprims.vhd │ │ │ │ │ └── vhdlsim.txt │ │ │ │ └── dirs.txt │ │ │ ├── unisim │ │ │ │ ├── dirs.txt │ │ │ │ ├── simprims │ │ │ │ │ ├── vhdlsim.txt │ │ │ │ │ ├── xilinx_mem.vhd │ │ │ │ │ └── xilinx_simprims.vhd │ │ │ │ └── vcomponents │ │ │ │ │ ├── vhdlsim.txt │ │ │ │ │ └── xilinx_vcomponents.vhd │ │ │ └── virage │ │ │ │ ├── dirs.txt │ │ │ │ ├── simprims │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── virage_simprims.vhd │ │ │ │ └── vcomponents │ │ │ │ ├── vhdlsim.txt │ │ │ │ └── virage_vcomponents.vhd │ │ ├── techmap │ │ │ ├── altera_mf │ │ │ │ ├── clkgen_altera_mf.vhd │ │ │ │ ├── memory_altera_mf.vhd │ │ │ │ ├── tap_altera_mf.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── apa │ │ │ │ ├── memory_apa.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── atc18 │ │ │ │ ├── pads_atc18.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── axcelerator │ │ │ │ ├── buffer_axcelerator.vhd │ │ │ │ ├── clkgen_axcelerator.vhd │ │ │ │ ├── grspwc_axcelerator.vhd │ │ │ │ ├── grusbhc_axcelerator.vhd │ │ │ │ ├── grusbhc_axceleratorpkg.vhd │ │ │ │ ├── memory_axcelerator.vhd │ │ │ │ ├── pads_axcelerator.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── clocks │ │ │ │ ├── clkgen.in │ │ │ │ ├── clkgen.in.h │ │ │ │ ├── clkgen.in.help │ │ │ │ └── clkgen.in.vhd │ │ │ ├── cycloneiii │ │ │ │ ├── alt │ │ │ │ │ ├── aclkout.vhd │ │ │ │ │ ├── actrlout.vhd │ │ │ │ │ ├── admout.vhd │ │ │ │ │ ├── adqin.vhd │ │ │ │ │ ├── adqout.vhd │ │ │ │ │ ├── adqsin.vhd │ │ │ │ │ ├── adqsout.vhd │ │ │ │ │ └── apll.vhd │ │ │ │ ├── cycloneiii_clkgen.vhd │ │ │ │ ├── cycloneiii_ddr_phy.vhd │ │ │ │ ├── ddr_phy_cycloneiii.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── dirs.txt │ │ │ ├── dw02 │ │ │ │ ├── mul_dw_gen.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── ec │ │ │ │ ├── ddr_ec.vhd │ │ │ │ ├── memory_ec.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── eclipsee │ │ │ │ ├── memory_eclipse.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── gencomp │ │ │ │ ├── clkgen.in │ │ │ │ ├── clkgen.in.h │ │ │ │ ├── clkgen.in.help │ │ │ │ ├── clkgen.in.vhd │ │ │ │ ├── gencomp.vhd │ │ │ │ ├── netcomp.vhd │ │ │ │ ├── tech.in │ │ │ │ ├── tech.in.com │ │ │ │ ├── tech.in.fpga │ │ │ │ ├── tech.in.gpl │ │ │ │ ├── tech.in.h │ │ │ │ ├── tech.in.help │ │ │ │ ├── tech.in.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── inferred │ │ │ │ ├── ddr_inferred.vhd │ │ │ │ ├── ddr_phy_inferred.vhd │ │ │ │ ├── memory_inferred.vhd │ │ │ │ ├── mul_inferred.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── maps │ │ │ │ ├── allclkgen.vhd │ │ │ │ ├── allddr.vhd │ │ │ │ ├── allmem.vhd │ │ │ │ ├── allpads.vhd │ │ │ │ ├── alltap.vhd │ │ │ │ ├── clkand.vhd │ │ │ │ ├── clkgen.vhd │ │ │ │ ├── clkmux.vhd │ │ │ │ ├── clkpad.vhd │ │ │ │ ├── clkpad_ds.vhd │ │ │ │ ├── cpu_disas_net.vhd │ │ │ │ ├── ddr_ireg.vhd │ │ │ │ ├── ddr_oreg.vhd │ │ │ │ ├── ddrphy.vhd │ │ │ │ ├── grfpw_net.vhd │ │ │ │ ├── grlfpw_net.vhd │ │ │ │ ├── grspwc_net.vhd │ │ │ │ ├── grusbhc_net.vhd │ │ │ │ ├── inpad.vhd │ │ │ │ ├── inpad_ds.vhd │ │ │ │ ├── iodpad.vhd │ │ │ │ ├── iopad.vhd │ │ │ │ ├── iopad_ds.vhd │ │ │ │ ├── lvds_combo.vhd │ │ │ │ ├── mul_61x61.vhd │ │ │ │ ├── odpad.vhd │ │ │ │ ├── outpad.vhd │ │ │ │ ├── outpad_ds.vhd │ │ │ │ ├── regfile_3p.vhd │ │ │ │ ├── ringosc.vhd │ │ │ │ ├── skew_outpad.vhd │ │ │ │ ├── ssrctrl_net.vhd │ │ │ │ ├── syncfifo.vhd │ │ │ │ ├── syncram.vhd │ │ │ │ ├── syncram64.vhd │ │ │ │ ├── syncram_2p.vhd │ │ │ │ ├── syncram_dp.vhd │ │ │ │ ├── tap.vhd │ │ │ │ ├── techbuf.vhd │ │ │ │ ├── toutpad.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── proasic3 │ │ │ │ ├── buffer_apa3.vhd │ │ │ │ ├── clkgen_proasic3.vhd │ │ │ │ ├── memory_apa3.vhd │ │ │ │ ├── tap_proasic3.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── stratixii │ │ │ │ ├── grusbhc_stratixii.vhd │ │ │ │ ├── grusbhc_stratixiipkg.vhd │ │ │ │ ├── stratixii_ddr_phy.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── stratixiii │ │ │ │ ├── adq_dqs │ │ │ │ │ ├── altdq_dqs_input │ │ │ │ │ ├── bidir_dq_iobuf_inst.vhd │ │ │ │ │ ├── bidir_dqs_iobuf_inst.vhd │ │ │ │ │ ├── dq_dqs_inst.vhd │ │ │ │ │ └── output_dqs_iobuf_inst.vhd │ │ │ │ ├── alt │ │ │ │ │ ├── aclkout.vhd │ │ │ │ │ ├── actrlout.vhd │ │ │ │ │ ├── admout.vhd │ │ │ │ │ ├── adqin.vhd │ │ │ │ │ ├── adqout.vhd │ │ │ │ │ ├── adqsin.vhd │ │ │ │ │ ├── adqsout.vhd │ │ │ │ │ └── apll.vhd │ │ │ │ ├── clkgen_stratixiii.vhd │ │ │ │ ├── ddr_phy_stratixiii.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── umc18 │ │ │ │ ├── memory_umc18.vhd │ │ │ │ ├── pads_umc18.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ ├── unisim │ │ │ │ ├── buffer_unisim.vhd │ │ │ │ ├── clkgen_unisim.vhd │ │ │ │ ├── ddr_phy_unisim.vhd │ │ │ │ ├── ddr_unisim.vhd │ │ │ │ ├── grfpw_unisim.vhd │ │ │ │ ├── grspwc_unisim.vhd │ │ │ │ ├── grusbhc_unisim.vhd │ │ │ │ ├── grusbhc_unisimpkg.vhd │ │ │ │ ├── memory_unisim.vhd │ │ │ │ ├── pads_unisim.vhd │ │ │ │ ├── ssrctrl_unisim.vhd │ │ │ │ ├── tap_unisim.vhd │ │ │ │ └── vhdlsyn.txt │ │ │ └── virage │ │ │ │ ├── memory_virage.vhd │ │ │ │ └── vhdlsyn.txt │ │ └── work │ │ │ ├── debug │ │ │ ├── cpu_disas.vhd │ │ │ ├── debug.vhd │ │ │ ├── grtestmod.vhd │ │ │ └── vhdlsim.txt │ │ │ └── dirs.txt │ ├── software │ │ ├── cantest │ │ │ ├── README.txt │ │ │ ├── can_receive_basic.c │ │ │ ├── can_receive_extended.c │ │ │ ├── can_send_basic.c │ │ │ ├── can_send_extended.c │ │ │ └── can_setup.c │ │ ├── dso │ │ │ └── Leon3Uart_irq.c │ │ ├── greth │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── greth.c │ │ │ ├── greth.exe │ │ │ ├── greth_api.c │ │ │ └── greth_api.h │ │ ├── leon3 │ │ │ ├── Makefile │ │ │ ├── ahbstat.h │ │ │ ├── amba.c │ │ │ ├── amba.h │ │ │ ├── apbps2.c │ │ │ ├── apbuart.c │ │ │ ├── atactrl.c │ │ │ ├── base_test.c │ │ │ ├── brm_1553.c │ │ │ ├── cache.c │ │ │ ├── cacheasm.S │ │ │ ├── can_oc.c │ │ │ ├── divtest.c │ │ │ ├── dsu3.c │ │ │ ├── dsu3.h │ │ │ ├── fpu.c │ │ │ ├── gpio.c │ │ │ ├── gptimer.c │ │ │ ├── grcan.c │ │ │ ├── grcommon.h │ │ │ ├── greth.c │ │ │ ├── grfpu_ops.S │ │ │ ├── grfpu_test.c │ │ │ ├── grhcan.c │ │ │ ├── grpwm.c │ │ │ ├── grtc.c │ │ │ ├── grtm.c │ │ │ ├── grusbdc.c │ │ │ ├── grusbhc.c │ │ │ ├── hello.c │ │ │ ├── hpi_defs.h │ │ │ ├── hpi_functions.c │ │ │ ├── hpi_functions.h │ │ │ ├── hpi_new.c │ │ │ ├── i2c.c │ │ │ ├── i2cmst.c │ │ │ ├── i2cslv.c │ │ │ ├── irqmp.c │ │ │ ├── irqmp.h │ │ │ ├── l2irqctrl.c │ │ │ ├── l2timers.c │ │ │ ├── leon2.h │ │ │ ├── leon2_test.c │ │ │ ├── leon3.h │ │ │ ├── leon3_test.c │ │ │ ├── misc.c │ │ │ ├── mmu.c │ │ │ ├── mmu.h │ │ │ ├── mmu_asm.S │ │ │ ├── mptest.c │ │ │ ├── mulasm.S │ │ │ ├── multest.c │ │ │ ├── pcif.c │ │ │ ├── pcitest.c │ │ │ ├── pcitest.h │ │ │ ├── prom.S │ │ │ ├── prom.out │ │ │ ├── ramfill.c │ │ │ ├── ramtest.c │ │ │ ├── regtest.S │ │ │ ├── report_device.c │ │ │ ├── rt_1553.c │ │ │ ├── satcan.c │ │ │ ├── spictrl.c │ │ │ ├── spimctrl.c │ │ │ ├── spwtest.c │ │ │ ├── standalone.c │ │ │ ├── svgactrl.c │ │ │ ├── systest.c │ │ │ └── testmod.h │ │ ├── logan │ │ │ └── logan.tcl │ │ └── spw │ │ │ ├── Makefile │ │ │ ├── rmapapi.c │ │ │ ├── rmapapi.h │ │ │ ├── spw_test_dual.c │ │ │ ├── spw_test_dual_sep.c │ │ │ ├── spwapi.c │ │ │ ├── spwapi.h │ │ │ └── spwtest.c │ └── verification │ │ └── apbuart │ │ ├── Makefile │ │ ├── apbuart_tb.vhd │ │ ├── apbuart_tp.vhd │ │ └── simuart.vhd │ ├── software │ ├── .gitignore │ ├── DSO_ADC_Control.c │ ├── DSO_ADC_Control.h │ ├── DSO_Font.c │ ├── DSO_Font.h │ ├── DSO_FrontPanel.c │ ├── DSO_FrontPanel.h │ ├── DSO_GUI.c │ ├── DSO_GUI.h │ ├── DSO_Main.h │ ├── DSO_Misc.c │ ├── DSO_Misc.h │ ├── DSO_Remote.c │ ├── DSO_Remote.h │ ├── DSO_Remote_Slave.c │ ├── DSO_Remote_Slave.h │ ├── DSO_SFR.h │ ├── DSO_Screen.c │ ├── DSO_Screen.h │ ├── DSO_Signal.c │ ├── DSO_Signal.h │ ├── DSO_SignalCTest.c │ ├── DSO_SignalCapture.c │ ├── DSO_SignalCapture.h │ ├── Filter_I8.c │ ├── Filter_I8.h │ ├── GUI.c │ ├── GUI.h │ ├── LEON3_DSU.h │ ├── Leon3Uart.c │ ├── Leon3Uart.h │ ├── Makefile.firmware │ ├── Startup.S │ ├── configure │ ├── fonts │ │ ├── font_Liberation_Sans_Bold_14.c │ │ ├── font_Liberation_Sans_Bold_14.h │ │ ├── font_Liberation_Sans_Bold_17.c │ │ ├── font_Liberation_Sans_Bold_17.h │ │ ├── symbols.c │ │ └── symbols.h │ ├── images │ │ ├── fallingEdge.bmp │ │ ├── risingEdge.bmp │ │ ├── triggerArrow.bmp │ │ └── up.bmp │ ├── irq.c │ ├── irq.h │ ├── tests │ │ └── SRAMtest.S │ ├── thirdparty │ │ ├── convert.c │ │ ├── convert.h │ │ ├── crc.c │ │ ├── crc.h │ │ ├── rprintf.c │ │ └── rprintf.h │ ├── timer.c │ ├── timer.h │ ├── tools │ │ ├── BootRomGen.c │ │ ├── C_coeff_gen.m │ │ ├── FilterCoeffs.m │ │ ├── toAnsiC.sed │ │ └── toAnsiC.sh │ ├── types.h │ ├── util.c │ └── util.h │ └── uart16550 │ ├── src │ ├── Netlist │ │ ├── UartWrapper.sft │ │ ├── UartWrapper.vho │ │ ├── UartWrapper_modelsim.xrf │ │ └── UartWrapper_vhd.sdo │ ├── Uart-p.vhd │ ├── UartWrapper-Empty-a.vhd │ ├── UartWrapper-RTL-a.vhd │ ├── UartWrapper-e.vhd │ ├── raminfr.v │ ├── timescale.v │ ├── uart_debug_if.v │ ├── uart_defines.v │ ├── uart_receiver.v │ ├── uart_regs.v │ ├── uart_rfifo.v │ ├── uart_sync_flops.v │ ├── uart_tfifo.v │ ├── uart_top.v │ ├── uart_transmitter.v │ └── uart_wb.v │ └── synUartWrapper │ ├── UartWrapper.qpf │ └── UartWrapper.qsf └── pc ├── WaveRecorder ├── .gitignore ├── CPUComm.cpp ├── CPUComm.h ├── DSO_Remote_Master.c ├── DSO_Remote_Master.h ├── DebugComm.cpp ├── DebugComm.h ├── DebugUart.cpp ├── DebugUart.h ├── ImageTypes.h ├── Makefile ├── NormalUART.cpp ├── NormalUART.h ├── Object.h ├── PCUart.c ├── PCUart.h ├── Protocoll.cpp ├── Protocoll.h ├── RemoteSignalCapture.cpp ├── RemoteSignalCapture.h ├── Request.cpp ├── Request.h ├── WaveFilePackage.c ├── WaveFilePackage.h ├── WaveRecorder.c ├── arg_costums.c ├── arg_costums.h ├── matlab │ ├── Sample.m │ ├── SetScope.m │ └── TestWavFileWrite.m ├── thirdparty │ ├── convert.c │ ├── convert.h │ ├── crc.c │ └── crc.h └── types.h └── bmp2framebuffer ├── .gitignore ├── EasyBMP.cpp ├── EasyBMP.h ├── EasyBMP_BMP.h ├── EasyBMP_DataStructures.h ├── EasyBMP_VariousBMPutilities.h ├── bmp2framebuffer.cpp ├── makefile └── readme /fpga/leon3/Altera/src/CYCLONEII_COMPONENTS.VHD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/CYCLONEII_COMPONENTS.VHD -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/DelayMemory.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/DelayMemory.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/PLL0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/PLL0.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/PLL1.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/PLL1.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/PLL2.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/PLL2.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/PLL3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/PLL3.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/SbXPLL.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/SbXPLL.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/SbxXDelayMemory.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/SbxXDelayMemory.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/SyncRam1Gs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/SyncRam1Gs.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/TriggerMemory.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/TriggerMemory.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/TriggerMemory4CH.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/TriggerMemory4CH.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/altera_europa_support_lib.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/altera_europa_support_lib.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/altera_mf.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/altera_mf.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/altera_mf_components.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/altera_mf_components.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/altera_primitives.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/altera_primitives.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/altera_primitives_components.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/altera_primitives_components.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/cycloneii_atoms.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/cycloneii_atoms.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/jtag_uart_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/jtag_uart_0.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/lpm_pack.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/lpm_pack.vhd -------------------------------------------------------------------------------- /fpga/leon3/Altera/src/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Altera/src/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/CPU/Bootloader/bin/bin-table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/Bootloader/bin/bin-table.txt -------------------------------------------------------------------------------- /fpga/leon3/CPU/Bootloader/bin/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/Bootloader/bin/bootloader.bin -------------------------------------------------------------------------------- /fpga/leon3/CPU/Bootloader/bin/bootloader.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/Bootloader/bin/bootloader.elf -------------------------------------------------------------------------------- /fpga/leon3/CPU/Bootloader/bin/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/Bootloader/bin/compile.sh -------------------------------------------------------------------------------- /fpga/leon3/CPU/Bootloader/bin/elf-table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/Bootloader/bin/elf-table.txt -------------------------------------------------------------------------------- /fpga/leon3/CPU/Bootloader/src/ROM-template-post-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/Bootloader/src/ROM-template-post-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/Bootloader/src/ROM-template-pre-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/Bootloader/src/ROM-template-pre-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/Bootloader/src/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/Bootloader/src/bootloader.c -------------------------------------------------------------------------------- /fpga/leon3/CPU/Bootloader/src/crt0_phi.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/Bootloader/src/crt0_phi.S -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/Arbiter-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/Arbiter-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/BootloaderROM-bin-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/BootloaderROM-bin-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/BootloaderROM-elf-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/BootloaderROM-elf-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/CPUMemoryInterface-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/CPUMemoryInterface-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/Devices-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/Devices-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/SpecialFunctionRegister-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/SpecialFunctionRegister-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/SpecialFunctionRegister-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/SpecialFunctionRegister-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/ZPU/trace.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/ZPU/trace.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/ZPU/txt_util.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/ZPU/txt_util.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/ZPU/zpu_config.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/ZPU/zpu_config.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/ZPU/zpu_core.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/ZPU/zpu_core.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/ZPU/zpupkg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/ZPU/zpupkg.vhd -------------------------------------------------------------------------------- /fpga/leon3/CPU/src/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/CPU/src/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/CreateBitStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/CreateBitStream.m -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/CreatePackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/CreatePackage.m -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/FastFirCoeff-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/FastFirCoeff-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/FastRampCoeff-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/FastRampCoeff-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/FilterError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/FilterError.m -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/FirCoeff-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/FirCoeff-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/FirCoeff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/FirCoeff.m -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/LongInputValues-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/LongInputValues-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/M10.fda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/M10.fda -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/M10.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/M10.mat -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/M2.fda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/M2.fda -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/M2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/M2.mat -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/M4.fda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/M4.fda -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/M4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/M4.mat -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/RampCoeff-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/RampCoeff-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/ShortInputValues-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/ShortInputValues-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/SinGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/SinGen.m -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/Testpatterns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/Testpatterns.m -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/quant2c.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/quant2c.m -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Octave/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Octave/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/Readme.txt -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simAdderTreeFilter/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simAdderTreeFilter/sim.do -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simAdderTreeFilter/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simAdderTreeFilter/wave.do -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simDownSampler/sim.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simDownSampler/sim.bat -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simDownSampler/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simDownSampler/sim.do -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simDownSampler/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simDownSampler/wave.do -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simFastAverage/sim.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simFastAverage/sim.bat -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simFastAverage/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simFastAverage/sim.do -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simFastAverage/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simFastAverage/wave.do -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simPolyPhaseDecimator/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simPolyPhaseDecimator/sim.do -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/simPolyPhaseDecimator/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/simPolyPhaseDecimator/wave.do -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/src/AdderTreeFilter-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/src/AdderTreeFilter-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/src/DelayMemory.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/src/DelayMemory.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/src/DownSampler-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/src/DownSampler-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/src/FastAverage-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/src/FastAverage-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/src/PolyphaseDecimator-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/src/PolyphaseDecimator-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/src/TestbenchFastAverage-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/src/TestbenchFastAverage-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/src/TopDownSampler-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/src/TopDownSampler-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/src/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/src/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/src/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/synFastAverage/FastAverage.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/synFastAverage/FastAverage.qpf -------------------------------------------------------------------------------- /fpga/leon3/DownSampler/synFastAverage/FastAverage.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/DownSampler/synFastAverage/FastAverage.qsf -------------------------------------------------------------------------------- /fpga/leon3/ExtRAM/src/SRamPriorityAccess-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/ExtRAM/src/SRamPriorityAccess-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/ExtRAM/src/SRamPriorityAccess-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/ExtRAM/src/SRamPriorityAccess-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/ExtRAM/src/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/ExtRAM/src/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/sim/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/sim/sim.do -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/sim/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/sim/wave.do -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/DSOConfig-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/src/DSOConfig-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/LedsKeys-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/src/LedsKeys-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/LedsKeys-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/src/LedsKeys-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/NobDecoder-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/src/NobDecoder-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/PWM-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/src/PWM-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/StrobeGen-Rtl-a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/src/StrobeGen-Rtl-a.vhd -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/StrobeGen-e.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/src/StrobeGen-e.vhd -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/Testbench-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/src/Testbench-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fpga/leon3/LedsKeys/src/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/LedsKeys/src/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/Scope/Octave/SinGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/Octave/SinGen.m -------------------------------------------------------------------------------- /fpga/leon3/Scope/Octave/WavGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/Octave/WavGen.m -------------------------------------------------------------------------------- /fpga/leon3/Scope/simSandboxX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simSandboxX/Makefile -------------------------------------------------------------------------------- /fpga/leon3/Scope/simSandboxX/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simSandboxX/sim.do -------------------------------------------------------------------------------- /fpga/leon3/Scope/simSandboxX/sram.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simSandboxX/sram.srec -------------------------------------------------------------------------------- /fpga/leon3/Scope/simSandboxX/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simSandboxX/wave.do -------------------------------------------------------------------------------- /fpga/leon3/Scope/simSandboxX/work.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simSandboxX/work.do -------------------------------------------------------------------------------- /fpga/leon3/Scope/simW2000A/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simW2000A/Makefile -------------------------------------------------------------------------------- /fpga/leon3/Scope/simW2000A/Postlayout.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simW2000A/Postlayout.do -------------------------------------------------------------------------------- /fpga/leon3/Scope/simW2000A/ghdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simW2000A/ghdl.sh -------------------------------------------------------------------------------- /fpga/leon3/Scope/simW2000A/prom.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simW2000A/prom.srec -------------------------------------------------------------------------------- /fpga/leon3/Scope/simW2000A/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simW2000A/sim.do -------------------------------------------------------------------------------- /fpga/leon3/Scope/simW2000A/sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simW2000A/sim.sh -------------------------------------------------------------------------------- /fpga/leon3/Scope/simW2000A/sram.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simW2000A/sram.srec -------------------------------------------------------------------------------- /fpga/leon3/Scope/simW2000A/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simW2000A/wave.do -------------------------------------------------------------------------------- /fpga/leon3/Scope/simW2000A/work.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/simW2000A/work.do -------------------------------------------------------------------------------- /fpga/leon3/Scope/src/Global-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/src/Global-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/Scope/src/NetlistWrapper-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/src/NetlistWrapper-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Scope/src/TestbenchTopScope-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/src/TestbenchTopScope-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Scope/src/TopScope-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/src/TopScope-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Scope/src/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | NetlistWrapper-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Scope/src/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/src/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/Scope/synSandboxX/SandboxX.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/synSandboxX/SandboxX.qpf -------------------------------------------------------------------------------- /fpga/leon3/Scope/synSandboxX/SandboxX.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/synSandboxX/SandboxX.qsf -------------------------------------------------------------------------------- /fpga/leon3/Scope/synW2000A/W2000A.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/synW2000A/W2000A.qpf -------------------------------------------------------------------------------- /fpga/leon3/Scope/synW2000A/W2000A.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/synW2000A/W2000A.qsf -------------------------------------------------------------------------------- /fpga/leon3/Scope/synW2000A/W2000A.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/synW2000A/W2000A.sdc -------------------------------------------------------------------------------- /fpga/leon3/Scope/synW2000A/W2000A.sof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Scope/synW2000A/W2000A.sof -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/ADC-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/ADC-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/PLL0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/PLL0.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/PLL1.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/PLL1.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/PLL2.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/PLL2.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/PLL3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/PLL3.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/PatternGenerator-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/PatternGenerator-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/SbXPLL.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/SbXPLL.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/SbxXSignalCapture-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/SbxXSignalCapture-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/SignalCapture-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/SignalCapture-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/SignalSelector-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/SignalSelector-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/SignalCapture/src/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/SignalCapture/src/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/AsyncSRAM-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/AsyncSRAM-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/BhvADC-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/BhvADC-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/BhvDisplay-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/BhvDisplay-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/DAC_LTC2612-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/DAC_LTC2612-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/DeMux_HCT238-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/DeMux_HCT238-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/PtoS_HCT165-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/PtoS_HCT165-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/StoP_MC14094b-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/StoP_MC14094b-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/StoP_hc595-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/StoP_hc595-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/Wavefiles-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/Wavefiles-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/TestFiles/src/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/TestFiles/src/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fpga/leon3/Trigger/Octave/FrameDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/Octave/FrameDisplay.m -------------------------------------------------------------------------------- /fpga/leon3/Trigger/Octave/SinGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/Octave/SinGen.m -------------------------------------------------------------------------------- /fpga/leon3/Trigger/Octave/WavGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/Octave/WavGen.m -------------------------------------------------------------------------------- /fpga/leon3/Trigger/simTopTrigger/sim.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/simTopTrigger/sim.bat -------------------------------------------------------------------------------- /fpga/leon3/Trigger/simTopTrigger/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/simTopTrigger/sim.do -------------------------------------------------------------------------------- /fpga/leon3/Trigger/simTopTrigger/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/simTopTrigger/wave.do -------------------------------------------------------------------------------- /fpga/leon3/Trigger/simTopTrigger/work.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/simTopTrigger/work.do -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/DigitalTrigger-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/src/DigitalTrigger-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/ExtTriggerInput-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/src/ExtTriggerInput-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/ExternalTrigger-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/src/ExternalTrigger-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/NormalTrigger-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/src/NormalTrigger-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/TestbenchTopTrigger-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/src/TestbenchTopTrigger-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/TopTrigger-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/src/TopTrigger-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/Trigger-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/src/Trigger-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/TriggerMemory-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/src/TriggerMemory-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fpga/leon3/Trigger/src/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/src/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/Trigger/synTopTrigger/TopTrigger.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/synTopTrigger/TopTrigger.qpf -------------------------------------------------------------------------------- /fpga/leon3/Trigger/synTopTrigger/TopTrigger.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/Trigger/synTopTrigger/TopTrigger.qsf -------------------------------------------------------------------------------- /fpga/leon3/VGA/sim/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/sim/sim.do -------------------------------------------------------------------------------- /fpga/leon3/VGA/sim/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/sim/wave.do -------------------------------------------------------------------------------- /fpga/leon3/VGA/sim/work.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/sim/work.do -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/DoubleBufferVGA-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/DoubleBufferVGA-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/PlaneVGActl-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/PlaneVGActl-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/SimpleVGA-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/SimpleVGA-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/StrobeGen_var-a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/StrobeGen_var-a.vhd -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/StrobeGen_var-e.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/StrobeGen_var-e.vhd -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/TestbenchDoubleBufferVGA-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/TestbenchDoubleBufferVGA-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/TestbenchPlaneVGActl-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/TestbenchPlaneVGActl-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/TestbenchSimpleVGA-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/TestbenchSimpleVGA-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/VGA-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/VGA-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fpga/leon3/VGA/src/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/VGA/src/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/Makefile: -------------------------------------------------------------------------------- 1 | include bin/Makefile 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/Makefile -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/Makefile.config -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/ahbrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/ahbrom.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/atc_run_multi.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/atc_run_multi.tcl -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/cds.lib: -------------------------------------------------------------------------------- 1 | include $CDS_INST_DIR/tools/inca/files/cds.lib 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/def.npl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/def.npl -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/echo.bat: -------------------------------------------------------------------------------- 1 | echo "$@" 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/editise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/editise.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/gpl.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/gpl.sed -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/gr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/gr.sed -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/libs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/modelsim.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/modelsim.ini -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/mt1.mpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/mt1.mpf -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/quartus.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/quartus.qpf -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/quartus.qsf_head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/quartus.qsf_head -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/route: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/route -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/route_lattice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/route_lattice -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/route_ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/route_ngc -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/runvsim.do: -------------------------------------------------------------------------------- 1 | run -all 2 | quit 3 | 4 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/sonata.sws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/sonata.sws -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/sonata1.sws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/sonata1.sws -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/sonata2.sws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/sonata2.sws -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/synplify.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/synplify.prj -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/.config -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/.config.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/.config.old -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/.null: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/.null -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/Makefile -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/config.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/config.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/config.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/config.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/defconfig -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/header.tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/header.tk -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/mkdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/mkdevice.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/tail.tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/tail.tk -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/tkcond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/tkcond.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/tkgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/tkgen.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/tkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/tkparse.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/tkconfig/tkparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/tkconfig/tkparse.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/top.dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/top.dc -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/top.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/top.rc -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/wish: -------------------------------------------------------------------------------- 1 | wish84.exe "$@" 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/xgrlib.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/xgrlib.tcl -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/xstmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/xstmod -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/xstrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/xstrun -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/xstverilog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/xstverilog -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/bin/xstvhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/bin/xstvhdl -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/DSO_W2000A/Makefile.inc: -------------------------------------------------------------------------------- 1 | TECHNOLOGY=CYCLONEII 2 | PART=EP2C35 3 | PACKAGE=FC484 4 | SPEED=-8 5 | SYNFREQ=63 6 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/DSO_W2000A/default.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/boards/DSO_W2000A/default.sdc -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/SandboxX/Makefile.inc: -------------------------------------------------------------------------------- 1 | TECHNOLOGY=CYCLONEII 2 | PART=EP2C35 3 | PACKAGE=FC484 4 | SPEED=-8 5 | SYNFREQ=60 6 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/SandboxX/default.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/boards/SandboxX/default.sdc -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/SandboxX/leon3mini.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/boards/SandboxX/leon3mini.qsf -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/ge-hpe-mini/Makefile.inc: -------------------------------------------------------------------------------- 1 | TECHNOLOGY=CYCLONEII 2 | PART=EP2C35 3 | PACKAGE=FC484 4 | SPEED=-8 5 | SYNFREQ=60 6 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/ge-hpe-mini/default.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/boards/ge-hpe-mini/default.sdc -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/gr-xc3s-1500/default.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/boards/gr-xc3s-1500/default.ut -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/gr-xc3s-1500/fpga.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/boards/gr-xc3s-1500/fpga.cmd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/boards/gr-xc3s-1500/prom.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/boards/gr-xc3s-1500/prom.cmd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-gr-xc3s-1500/doc/Makefile: -------------------------------------------------------------------------------- 1 | clean: 2 | -rm *backup* *.ps *.log 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-sandboxx/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-sandboxx/.config -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-sandboxx/indata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-sandboxx/indata -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-sandboxx/prom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-sandboxx/prom.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/.config -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/Makefile -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/config.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/config.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/defconfig -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/ghdl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/ghdl.bat -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/ghdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/ghdl.sh -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/indata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/indata -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/l3.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/l3.do -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/leon3.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/leon3.do -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/libs.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/libs.do -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/libs.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/linkprom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/linkprom -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/prom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/prom.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/prom.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/prom.srec -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/systest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/systest.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/designs/leon3-w2000a/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/designs/leon3-w2000a/wave.do -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/doc/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/doc/Changelog.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/doc/grip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/doc/grip.pdf -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/doc/grlib.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/doc/grlib.pdf -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/doc/sparcv8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/doc/sparcv8.pdf -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/grlib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/grlib.html -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/SFR/SFR.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/SFR/SignalAccess-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/SFR/SignalAccess-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/SFR/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/SFR/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/SFR/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/dirs.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/shram/shram-ea.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/shram/shram-ea.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/shram/shram-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/shram/shram-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/shram/shram.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/shram/shram.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/shram/shram.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/shram/shram.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/shram/shram.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/shram/shram.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/shram/shram.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/shram/shram.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/shram/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/shram/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/DSO/shram/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/DSO/shram/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/contrib/devices/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | #devices.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/contrib/dirs.txt: -------------------------------------------------------------------------------- 1 | devices 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/contrib/libs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/cypress/dirs.txt: -------------------------------------------------------------------------------- 1 | ssram 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/cypress/libs.txt: -------------------------------------------------------------------------------- 1 | cypress 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/cypress/ssram/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/cypress/ssram/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/dirs.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/memoryctrl/mctrl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/memoryctrl/mctrl.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/memoryctrl/mctrl.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/memoryctrl/mctrl.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/memoryctrl/mctrl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/memoryctrl/mctrl.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/memoryctrl/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/memoryctrl/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/misc/l2uart.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/misc/l2uart.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/misc/misc_esa.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/misc/misc_esa.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/misc/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/misc/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb_pkg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/pci/pci_arb_pkg.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/pci/pciarb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/pci/pciarb.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/pci/pcicomp.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/pci/pcicomp.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/esa/pci/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/esa/pci/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/comp/ethcomp.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/comp/ethcomp.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/comp/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | ethcomp.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/core/eth_ahb_mst.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/core/eth_ahb_mst.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/core/eth_rstgen.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/core/eth_rstgen.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/core/greth_pkg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/core/greth_pkg.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/core/greth_rx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/core/greth_rx.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/core/greth_tx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/core/greth_tx.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/core/grethc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/core/grethc.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/core/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/core/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/dirs.txt: -------------------------------------------------------------------------------- 1 | comp 2 | core 3 | wrapper 4 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/wrapper/greth_gen.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/wrapper/greth_gen.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/eth/wrapper/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/eth/wrapper/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/fmf/dirs.txt: -------------------------------------------------------------------------------- 1 | utilities flash 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/fmf/flash/flash.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/fmf/flash/flash.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/fmf/flash/m25p80.ftm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/fmf/flash/m25p80.ftm -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/fmf/flash/m25p80.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/fmf/flash/m25p80.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/fmf/flash/s25fl064a.ftm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/fmf/flash/s25fl064a.ftm -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/fmf/flash/s25fl064a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/fmf/flash/s25fl064a.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/fmf/flash/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/fmf/flash/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/fmf/utilities/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/fmf/utilities/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/arith/arith.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/arith/arith.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/arith/div32.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/arith/div32.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/arith/mul32.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/arith/mul32.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/arith/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/arith/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata_inf.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ata/ata_inf.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ata/atactrl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ata/atactrl.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ata/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ata/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mc.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mod.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_mod.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_oc.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/can_rd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/can_rd.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/canmux.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/canmux.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/grcan.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/grcan.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/grcan.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/grcan.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/grcan.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/grcan.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/grcan.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/grcan.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/can/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/can/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ahb_slv.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ahb_slv.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp16a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp16a.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp32a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp32a.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp64a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2sp64a.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2spa.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr2spa.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr_phy.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddr_phy.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrctrl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrctrl.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrctrl.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrctrl.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrctrl.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrctrl.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrctrl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrctrl.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrrec.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrrec.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp16a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp16a.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp32a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp32a.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp64a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrsp64a.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrspa.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/ddrspa.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/hs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/hs.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/ddr/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/ddr/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/dirs.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/greth/greth.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/greth/greth.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/greth/greth.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/greth/greth.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/greth/greth.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/greth/greth.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/greth/greth.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/greth/greth.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/greth/grethm.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/greth/grethm.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/greth/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/greth/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/jtag/ahbjtag.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/jtag/ahbjtag.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/jtag/jtag.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/jtag/jtag.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/jtag/jtag.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/jtag/jtag.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/jtag/jtag.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/jtag/jtag.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/jtag/jtag.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/jtag/jtag.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/jtag/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | jtagtst.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/cache.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/cache.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/dsu3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/dsu3.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/dsu3x.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/dsu3x.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/irqmp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/irqmp.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/irqmp.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/irqmp.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/iu3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/iu3.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/leon3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/leon3.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/leon3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/leon3.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/libiu.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/libiu.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/mfpwx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/mfpwx.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/mmu.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/mmu.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/mmutw.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/mmutw.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3/proc3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/leon3/proc3.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/leon3ft/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | leon3ft.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbdma.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbdma.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbmst.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbmst.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbram.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbram.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbram.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbrom.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbrom.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbstat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/ahbstat.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/apbps2.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/apbps2.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/apbvga.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/apbvga.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/gptimer.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/gptimer.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/grgpio.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/grgpio.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/grgpio.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/grgpio.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2c.in: -------------------------------------------------------------------------------- 1 | bool 'Enable I2C master ' CONFIG_I2C_ENABLE 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2c.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2c.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2c.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2c.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2cmst.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2cmst.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2cslv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2cslv.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2cslv.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/i2cslv.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/logan.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/logan.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/misc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/misc.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ps2.in: -------------------------------------------------------------------------------- 1 | bool 'Keyboard/mouse (PS2) interface ' CONFIG_PS2_ENABLE 2 | 3 | 4 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ps2.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/ps2.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ps2.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/ps2.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/ps2vga.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/ps2vga.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/rstgen.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/rstgen.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/spictrl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/spictrl.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/svgactrl.in: -------------------------------------------------------------------------------- 1 | bool 'SVGA graphical frame buffer ' CONFIG_SVGA_ENABLE 2 | 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/misc/wild.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/misc/wild.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/net/edcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/net/edcl.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/net/edcl.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/net/edcl.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/net/edcl.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/net/edcl.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/net/net.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/net/net.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/net/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/net/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/dmactrl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/dmactrl.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci_mt.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci_mt.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci_mtf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci_mtf.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci_mtf.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pci_mtf.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcidma.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcidma.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcidma.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcidma.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcilib.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcilib.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcipads.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcipads.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcitb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcitb.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcitrace.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/pcitrace.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/pci/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/pci/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/sim/ahbrep.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/sim/ahbrep.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/sim/phy.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/sim/phy.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/sim/sim.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/sim/sim.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/sim/sram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/sim/sram.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/sim/sram16.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/sim/sram16.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/sim/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/sim/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/sim/vlogsim.txt: -------------------------------------------------------------------------------- 1 | ata_device.v i2c_slave_model.v 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/uart/dcom.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/uart/dcom.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/uart/dcom.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/uart/dcom.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/uart/dcom.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/uart/dcom.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart1.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart1.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart1.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart2.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart2.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/uart/uart2.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/usb/grusb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/usb/grusb.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/usb/grusbdc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/usb/grusbdc.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/usb/grusbhc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/usb/grusbhc.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gaisler/usb/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gaisler/usb/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gleichmann/ac97/ac97_oc.in: -------------------------------------------------------------------------------- 1 | bool 'OpenCores AC97 Controller' CONFIG_AC97_OC_ENABLE 2 | 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gleichmann/ac97/vlogsyn.txt: -------------------------------------------------------------------------------- 1 | postponer.v 2 | ahb2wb.v 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gleichmann/dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gleichmann/dirs.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gleichmann/i2c/i2c.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gleichmann/i2c/i2c.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gleichmann/miscellaneous/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | miscellaneous_p.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gleichmann/miscellaneous/vlogsyn.txt: -------------------------------------------------------------------------------- 1 | postponer.v 2 | ahb2wb.v 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gleichmann/multiio/multiio.in: -------------------------------------------------------------------------------- 1 | bool 'MultiIO enable' CONFIG_MULTIIO_ENABLE 2 | 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gleichmann/sim/vlogsim.txt: -------------------------------------------------------------------------------- 1 | spi_slave_model.v 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gleichmann/spi/spi_oc.in: -------------------------------------------------------------------------------- 1 | bool 'OpenCores SPI Controller' CONFIG_SPI_OC_ENABLE 2 | 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/ahbctrl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/ahbctrl.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.in.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.in.help -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/amba.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/apbctrl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/apbctrl.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/defmst.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/defmst.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/devices.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/devices.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/dma2ahb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/dma2ahb.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/amba/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/amba/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/dirs.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/modgen/leaves.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/modgen/leaves.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/sparc/sparc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/sparc/sparc.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/sparc/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/sparc/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/sparc/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | sparc.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/stdlib/stdio.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/stdlib/stdio.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/stdlib/stdlib.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/stdlib/stdlib.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/stdlib/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | stdio.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/util/debug.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/util/debug.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/util/debug.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/util/debug.in.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/util/debug.in.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/util/debug.in.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/util/fpudummy.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/util/fpudummy.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/util/util.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/grlib/util/util.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/grlib/util/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | util.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gsi/dirs.txt: -------------------------------------------------------------------------------- 1 | ssram 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gsi/ssram/functions.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gsi/ssram/functions.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gsi/ssram/g880e18bt.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gsi/ssram/g880e18bt.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/gsi/ssram/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/gsi/ssram/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/hynix/ddr2/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/hynix/ddr2/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/hynix/dirs.txt: -------------------------------------------------------------------------------- 1 | ddr2 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/hynix/libs.txt: -------------------------------------------------------------------------------- 1 | hynix 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/libs.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/micron/ddr/ddr2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/micron/ddr/ddr2.v -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/micron/ddr/mobile_ddr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/micron/ddr/mobile_ddr.v -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/micron/ddr/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | mt46v16m16.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/micron/ddr/vlogsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/micron/ddr/vlogsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/micron/dirs.txt: -------------------------------------------------------------------------------- 1 | sdram 2 | ddr 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/micron/libs.txt: -------------------------------------------------------------------------------- 1 | micron 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/micron/sdram/vlogsim.txt: -------------------------------------------------------------------------------- 1 | mobile_sdr.v 2 | 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/openchip/devices/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | devices_ocp.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/openchip/dirs.txt: -------------------------------------------------------------------------------- 1 | #devices 2 | gpio charlcd sui 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/openchip/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/openchip/doc/readme.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/openchip/doc/suidemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/openchip/doc/suidemo.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/openchip/gpio/gpio.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/openchip/gpio/gpio.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/openchip/libs.txt: -------------------------------------------------------------------------------- 1 | openchip 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/openchip/sui/apbsui.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/openchip/sui/apbsui.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/openchip/sui/sui.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/openchip/sui/sui.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/opencores/ac97/vlogsyn.txt: -------------------------------------------------------------------------------- 1 | ac97_top.v 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/opencores/ata/vlogsim.txt: -------------------------------------------------------------------------------- 1 | ata_device_oc.v 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/opencores/dirs.txt: -------------------------------------------------------------------------------- 1 | occomp can i2c spi ata ac97 -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/opencores/i2c/i2coc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/opencores/i2c/i2coc.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/opencores/occomp/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | occomp.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/opencores/spi/vlogsyn.txt: -------------------------------------------------------------------------------- 1 | simple_spi_top.v 2 | 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/spansion/dirs.txt: -------------------------------------------------------------------------------- 1 | flash 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/spansion/flash/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | s29gl128p.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/spw/comp/spwcomp.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/spw/comp/spwcomp.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/spw/comp/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | spwcomp.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/spw/dirs.txt: -------------------------------------------------------------------------------- 1 | comp core wrapper -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/spw/wrapper/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | grspw_gen.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/synplify/dirs.txt: -------------------------------------------------------------------------------- 1 | sim 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/altera/dirs.txt: -------------------------------------------------------------------------------- 1 | simprims 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/altera_mf/dirs.txt: -------------------------------------------------------------------------------- 1 | simprims 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/apa/components/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | apa.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/apa/dirs.txt: -------------------------------------------------------------------------------- 1 | components 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/atc18/dirs.txt: -------------------------------------------------------------------------------- 1 | components 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/axcelerator/dirs.txt: -------------------------------------------------------------------------------- 1 | components 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/cycloneiii/dirs.txt: -------------------------------------------------------------------------------- 1 | simprims 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/dw02/comp/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | DW02_components.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/dw02/dirs.txt: -------------------------------------------------------------------------------- 1 | comp 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/ec/dirs.txt: -------------------------------------------------------------------------------- 1 | orca 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/ec/orca/ORCA_L.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/tech/ec/orca/ORCA_L.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/ec/orca/global.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/tech/ec/orca/global.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/ec/orca/mem3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/tech/ec/orca/mem3.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/ec/orca/orca.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/tech/ec/orca/orca.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/eclipsee/dirs.txt: -------------------------------------------------------------------------------- 1 | simprims 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/eclipsee/simprims/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | eclipse.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/proasic3/components/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | proasic3.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/proasic3/dirs.txt: -------------------------------------------------------------------------------- 1 | components 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/simprim/dirs.txt: -------------------------------------------------------------------------------- 1 | vcomponents 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/simprim/vcomponents/vcomponents.vhd: -------------------------------------------------------------------------------- 1 | package vcomponents is 2 | end; 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/simprim/vcomponents/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | vcomponents.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/snps/dw02/comp/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | DW02_components.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/snps/dw02/dirs.txt: -------------------------------------------------------------------------------- 1 | comp 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/stratixii/dirs.txt: -------------------------------------------------------------------------------- 1 | simprims 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/stratixiii/dirs.txt: -------------------------------------------------------------------------------- 1 | simprims 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/umc18/dirs.txt: -------------------------------------------------------------------------------- 1 | components 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/unisim/dirs.txt: -------------------------------------------------------------------------------- 1 | vcomponents 2 | simprims 3 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/unisim/vcomponents/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | xilinx_vcomponents.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/virage/dirs.txt: -------------------------------------------------------------------------------- 1 | vcomponents simprims 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/virage/simprims/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | virage_simprims.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/tech/virage/vcomponents/vhdlsim.txt: -------------------------------------------------------------------------------- 1 | virage_vcomponents.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/apa/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | memory_apa.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/dirs.txt: -------------------------------------------------------------------------------- 1 | gencomp 2 | inferred 3 | dw02 4 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/dw02/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | mul_dw_gen.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/ec/ddr_ec.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/ec/ddr_ec.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/ec/vhdlsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/ec/vhdlsyn.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/eclipsee/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | memory_eclipse.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/gencomp/tech.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/gencomp/tech.in -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/allddr.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/allddr.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/allmem.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/allmem.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/alltap.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/alltap.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/clkand.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/clkand.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/clkgen.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/clkgen.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/clkmux.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/clkmux.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/clkpad.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/clkpad.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/ddrphy.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/ddrphy.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/inpad.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/inpad.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/iodpad.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/iodpad.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/iopad.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/iopad.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/odpad.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/odpad.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/outpad.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/outpad.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/maps/tap.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/techmap/maps/tap.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/techmap/virage/vhdlsyn.txt: -------------------------------------------------------------------------------- 1 | memory_virage.vhd 2 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/work/debug/debug.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/work/debug/debug.vhd -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/work/debug/vhdlsim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/work/debug/vhdlsim.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/lib/work/dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/lib/work/dirs.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/cantest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/cantest/README.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/greth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/greth/Makefile -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/greth/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/greth/README.txt -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/greth/greth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/greth/greth.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/greth/greth.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/greth/greth.exe -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/greth/greth_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/greth/greth_api.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/greth/greth_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/greth/greth_api.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/Makefile -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/ahbstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/ahbstat.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/amba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/amba.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/amba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/amba.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/apbps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/apbps2.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/apbuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/apbuart.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/atactrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/atactrl.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/base_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/base_test.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/brm_1553.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/brm_1553.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/cache.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/cacheasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/cacheasm.S -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/can_oc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/can_oc.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/divtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/divtest.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/dsu3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/dsu3.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/dsu3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/dsu3.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/fpu.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/gpio.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/gptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/gptimer.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grcan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grcan.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grcommon.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/greth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/greth.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grfpu_ops.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grfpu_ops.S -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grfpu_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grfpu_test.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grhcan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grhcan.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grpwm.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grtc.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grtm.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grusbdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grusbdc.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/grusbhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/grusbhc.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/hello.c: -------------------------------------------------------------------------------- 1 | 2 | main() 3 | { 4 | printf("Hello World\n"); 5 | } 6 | -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/hpi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/hpi_defs.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/hpi_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/hpi_new.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/i2c.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/i2cmst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/i2cmst.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/i2cslv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/i2cslv.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/irqmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/irqmp.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/irqmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/irqmp.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/l2irqctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/l2irqctrl.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/l2timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/l2timers.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/leon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/leon2.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/leon2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/leon2_test.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/leon3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/leon3.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/leon3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/leon3_test.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/misc.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/mmu.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/mmu.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/mmu_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/mmu_asm.S -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/mptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/mptest.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/mulasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/mulasm.S -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/multest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/multest.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/pcif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/pcif.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/pcitest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/pcitest.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/pcitest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/pcitest.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/prom.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/prom.S -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/prom.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/prom.out -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/ramfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/ramfill.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/ramtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/ramtest.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/regtest.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/regtest.S -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/rt_1553.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/rt_1553.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/satcan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/satcan.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/spictrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/spictrl.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/spimctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/spimctrl.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/spwtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/spwtest.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/standalone.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/svgactrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/svgactrl.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/systest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/systest.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/leon3/testmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/leon3/testmod.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/logan/logan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/logan/logan.tcl -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/spw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/spw/Makefile -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/spw/rmapapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/spw/rmapapi.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/spw/rmapapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/spw/rmapapi.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/spw/spwapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/spw/spwapi.c -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/spw/spwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/spw/spwapi.h -------------------------------------------------------------------------------- /fpga/leon3/grlib-W2000A/software/spw/spwtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/grlib-W2000A/software/spw/spwtest.c -------------------------------------------------------------------------------- /fpga/leon3/software/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/.gitignore -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_ADC_Control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_ADC_Control.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_ADC_Control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_ADC_Control.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Font.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Font.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_FrontPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_FrontPanel.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_FrontPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_FrontPanel.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_GUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_GUI.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_GUI.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Main.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Misc.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Misc.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Remote.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Remote.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Remote_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Remote_Slave.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Remote_Slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Remote_Slave.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_SFR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_SFR.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Screen.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Screen.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Signal.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_Signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_Signal.h -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_SignalCTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_SignalCTest.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_SignalCapture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_SignalCapture.c -------------------------------------------------------------------------------- /fpga/leon3/software/DSO_SignalCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/DSO_SignalCapture.h -------------------------------------------------------------------------------- /fpga/leon3/software/Filter_I8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/Filter_I8.c -------------------------------------------------------------------------------- /fpga/leon3/software/Filter_I8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/Filter_I8.h -------------------------------------------------------------------------------- /fpga/leon3/software/GUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/GUI.c -------------------------------------------------------------------------------- /fpga/leon3/software/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/GUI.h -------------------------------------------------------------------------------- /fpga/leon3/software/LEON3_DSU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/LEON3_DSU.h -------------------------------------------------------------------------------- /fpga/leon3/software/Leon3Uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/Leon3Uart.c -------------------------------------------------------------------------------- /fpga/leon3/software/Leon3Uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/Leon3Uart.h -------------------------------------------------------------------------------- /fpga/leon3/software/Makefile.firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/Makefile.firmware -------------------------------------------------------------------------------- /fpga/leon3/software/Startup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/Startup.S -------------------------------------------------------------------------------- /fpga/leon3/software/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/configure -------------------------------------------------------------------------------- /fpga/leon3/software/fonts/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/fonts/symbols.c -------------------------------------------------------------------------------- /fpga/leon3/software/fonts/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/fonts/symbols.h -------------------------------------------------------------------------------- /fpga/leon3/software/images/fallingEdge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/images/fallingEdge.bmp -------------------------------------------------------------------------------- /fpga/leon3/software/images/risingEdge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/images/risingEdge.bmp -------------------------------------------------------------------------------- /fpga/leon3/software/images/triggerArrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/images/triggerArrow.bmp -------------------------------------------------------------------------------- /fpga/leon3/software/images/up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/images/up.bmp -------------------------------------------------------------------------------- /fpga/leon3/software/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/irq.c -------------------------------------------------------------------------------- /fpga/leon3/software/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/irq.h -------------------------------------------------------------------------------- /fpga/leon3/software/tests/SRAMtest.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/tests/SRAMtest.S -------------------------------------------------------------------------------- /fpga/leon3/software/thirdparty/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/thirdparty/convert.c -------------------------------------------------------------------------------- /fpga/leon3/software/thirdparty/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/thirdparty/convert.h -------------------------------------------------------------------------------- /fpga/leon3/software/thirdparty/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/thirdparty/crc.c -------------------------------------------------------------------------------- /fpga/leon3/software/thirdparty/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/thirdparty/crc.h -------------------------------------------------------------------------------- /fpga/leon3/software/thirdparty/rprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/thirdparty/rprintf.c -------------------------------------------------------------------------------- /fpga/leon3/software/thirdparty/rprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/thirdparty/rprintf.h -------------------------------------------------------------------------------- /fpga/leon3/software/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/timer.c -------------------------------------------------------------------------------- /fpga/leon3/software/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/timer.h -------------------------------------------------------------------------------- /fpga/leon3/software/tools/BootRomGen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/tools/BootRomGen.c -------------------------------------------------------------------------------- /fpga/leon3/software/tools/C_coeff_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/tools/C_coeff_gen.m -------------------------------------------------------------------------------- /fpga/leon3/software/tools/FilterCoeffs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/tools/FilterCoeffs.m -------------------------------------------------------------------------------- /fpga/leon3/software/tools/toAnsiC.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/tools/toAnsiC.sed -------------------------------------------------------------------------------- /fpga/leon3/software/tools/toAnsiC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/tools/toAnsiC.sh -------------------------------------------------------------------------------- /fpga/leon3/software/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/types.h -------------------------------------------------------------------------------- /fpga/leon3/software/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/util.c -------------------------------------------------------------------------------- /fpga/leon3/software/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/software/util.h -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/Netlist/UartWrapper.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/Netlist/UartWrapper.sft -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/Netlist/UartWrapper.vho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/Netlist/UartWrapper.vho -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/Uart-p.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/Uart-p.vhd -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/UartWrapper-Empty-a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/UartWrapper-Empty-a.vhd -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/UartWrapper-RTL-a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/UartWrapper-RTL-a.vhd -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/UartWrapper-e.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/UartWrapper-e.vhd -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/raminfr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/raminfr.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/timescale.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/timescale.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_debug_if.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_debug_if.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_defines.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_receiver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_receiver.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_regs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_regs.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_rfifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_rfifo.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_sync_flops.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_sync_flops.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_tfifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_tfifo.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_top.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_transmitter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_transmitter.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/src/uart_wb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/src/uart_wb.v -------------------------------------------------------------------------------- /fpga/leon3/uart16550/synUartWrapper/UartWrapper.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/synUartWrapper/UartWrapper.qpf -------------------------------------------------------------------------------- /fpga/leon3/uart16550/synUartWrapper/UartWrapper.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/fpga/leon3/uart16550/synUartWrapper/UartWrapper.qsf -------------------------------------------------------------------------------- /pc/WaveRecorder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/.gitignore -------------------------------------------------------------------------------- /pc/WaveRecorder/CPUComm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/CPUComm.cpp -------------------------------------------------------------------------------- /pc/WaveRecorder/CPUComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/CPUComm.h -------------------------------------------------------------------------------- /pc/WaveRecorder/DSO_Remote_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/DSO_Remote_Master.c -------------------------------------------------------------------------------- /pc/WaveRecorder/DSO_Remote_Master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/DSO_Remote_Master.h -------------------------------------------------------------------------------- /pc/WaveRecorder/DebugComm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/DebugComm.cpp -------------------------------------------------------------------------------- /pc/WaveRecorder/DebugComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/DebugComm.h -------------------------------------------------------------------------------- /pc/WaveRecorder/DebugUart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/DebugUart.cpp -------------------------------------------------------------------------------- /pc/WaveRecorder/DebugUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/DebugUart.h -------------------------------------------------------------------------------- /pc/WaveRecorder/ImageTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/ImageTypes.h -------------------------------------------------------------------------------- /pc/WaveRecorder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/Makefile -------------------------------------------------------------------------------- /pc/WaveRecorder/NormalUART.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/NormalUART.cpp -------------------------------------------------------------------------------- /pc/WaveRecorder/NormalUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/NormalUART.h -------------------------------------------------------------------------------- /pc/WaveRecorder/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/Object.h -------------------------------------------------------------------------------- /pc/WaveRecorder/PCUart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/PCUart.c -------------------------------------------------------------------------------- /pc/WaveRecorder/PCUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/PCUart.h -------------------------------------------------------------------------------- /pc/WaveRecorder/Protocoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/Protocoll.cpp -------------------------------------------------------------------------------- /pc/WaveRecorder/Protocoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/Protocoll.h -------------------------------------------------------------------------------- /pc/WaveRecorder/RemoteSignalCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/RemoteSignalCapture.cpp -------------------------------------------------------------------------------- /pc/WaveRecorder/RemoteSignalCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/RemoteSignalCapture.h -------------------------------------------------------------------------------- /pc/WaveRecorder/Request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/Request.cpp -------------------------------------------------------------------------------- /pc/WaveRecorder/Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/Request.h -------------------------------------------------------------------------------- /pc/WaveRecorder/WaveFilePackage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/WaveFilePackage.c -------------------------------------------------------------------------------- /pc/WaveRecorder/WaveFilePackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/WaveFilePackage.h -------------------------------------------------------------------------------- /pc/WaveRecorder/WaveRecorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/WaveRecorder.c -------------------------------------------------------------------------------- /pc/WaveRecorder/arg_costums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/arg_costums.c -------------------------------------------------------------------------------- /pc/WaveRecorder/arg_costums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/arg_costums.h -------------------------------------------------------------------------------- /pc/WaveRecorder/matlab/Sample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/matlab/Sample.m -------------------------------------------------------------------------------- /pc/WaveRecorder/matlab/SetScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/matlab/SetScope.m -------------------------------------------------------------------------------- /pc/WaveRecorder/matlab/TestWavFileWrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/matlab/TestWavFileWrite.m -------------------------------------------------------------------------------- /pc/WaveRecorder/thirdparty/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/thirdparty/convert.c -------------------------------------------------------------------------------- /pc/WaveRecorder/thirdparty/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/thirdparty/convert.h -------------------------------------------------------------------------------- /pc/WaveRecorder/thirdparty/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/thirdparty/crc.c -------------------------------------------------------------------------------- /pc/WaveRecorder/thirdparty/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/thirdparty/crc.h -------------------------------------------------------------------------------- /pc/WaveRecorder/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/WaveRecorder/types.h -------------------------------------------------------------------------------- /pc/bmp2framebuffer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/bmp2framebuffer/.gitignore -------------------------------------------------------------------------------- /pc/bmp2framebuffer/EasyBMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/bmp2framebuffer/EasyBMP.cpp -------------------------------------------------------------------------------- /pc/bmp2framebuffer/EasyBMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/bmp2framebuffer/EasyBMP.h -------------------------------------------------------------------------------- /pc/bmp2framebuffer/EasyBMP_BMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/bmp2framebuffer/EasyBMP_BMP.h -------------------------------------------------------------------------------- /pc/bmp2framebuffer/EasyBMP_DataStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/bmp2framebuffer/EasyBMP_DataStructures.h -------------------------------------------------------------------------------- /pc/bmp2framebuffer/EasyBMP_VariousBMPutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/bmp2framebuffer/EasyBMP_VariousBMPutilities.h -------------------------------------------------------------------------------- /pc/bmp2framebuffer/bmp2framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/bmp2framebuffer/bmp2framebuffer.cpp -------------------------------------------------------------------------------- /pc/bmp2framebuffer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/bmp2framebuffer/makefile -------------------------------------------------------------------------------- /pc/bmp2framebuffer/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvie/welecw2000a/HEAD/pc/bmp2framebuffer/readme --------------------------------------------------------------------------------