From 45706dfb001a2d89d987074bdb4578f34b79d15f Mon Sep 17 00:00:00 2001 From: Fabien Marteau Date: Thu, 23 Jan 2020 13:17:46 +0100 Subject: [PATCH] move sources files --- INSTALL.md | 7 +++++++ altera.cpp => openFPGALoader/altera.cpp | 0 altera.hpp => openFPGALoader/altera.hpp | 0 bitparser.cpp => openFPGALoader/bitparser.cpp | 0 bitparser.hpp => openFPGALoader/bitparser.hpp | 0 board.hpp => openFPGALoader/board.hpp | 0 cable.hpp => openFPGALoader/cable.hpp | 0 .../configBitstreamParser.cpp | 0 .../configBitstreamParser.hpp | 0 device.cpp => openFPGALoader/device.cpp | 0 device.hpp => openFPGALoader/device.hpp | 0 display.cpp => openFPGALoader/display.cpp | 0 display.hpp => openFPGALoader/display.hpp | 0 epcq.cpp => openFPGALoader/epcq.cpp | 0 epcq.hpp => openFPGALoader/epcq.hpp | 0 fsparser.cpp => openFPGALoader/fsparser.cpp | 0 fsparser.hpp => openFPGALoader/fsparser.hpp | 0 ftdijtag.cpp => openFPGALoader/ftdijtag.cpp | 0 ftdijtag.hpp => openFPGALoader/ftdijtag.hpp | 0 ftdipp_mpsse.cpp => openFPGALoader/ftdipp_mpsse.cpp | 0 ftdipp_mpsse.hpp => openFPGALoader/ftdipp_mpsse.hpp | 0 ftdispi.cpp => openFPGALoader/ftdispi.cpp | 0 ftdispi.hpp => openFPGALoader/ftdispi.hpp | 0 gowin.cpp => openFPGALoader/gowin.cpp | 0 gowin.hpp => openFPGALoader/gowin.hpp | 0 jedParser.cpp => openFPGALoader/jedParser.cpp | 0 jedParser.hpp => openFPGALoader/jedParser.hpp | 0 lattice.cpp => openFPGALoader/lattice.cpp | 0 lattice.hpp => openFPGALoader/lattice.hpp | 0 .../latticeBitParser.cpp | 0 .../latticeBitParser.hpp | 0 main.cpp => openFPGALoader/main.cpp | 0 mcsParser.cpp => openFPGALoader/mcsParser.cpp | 0 mcsParser.hpp => openFPGALoader/mcsParser.hpp | 0 part.hpp => openFPGALoader/part.hpp | 0 progressBar.cpp => openFPGALoader/progressBar.cpp | 0 progressBar.hpp => openFPGALoader/progressBar.hpp | 0 spiFlash.cpp => openFPGALoader/spiFlash.cpp | 0 spiFlash.hpp => openFPGALoader/spiFlash.hpp | 0 svf_jtag.cpp => openFPGALoader/svf_jtag.cpp | 0 svf_jtag.hpp => openFPGALoader/svf_jtag.hpp | 0 xilinx.cpp => openFPGALoader/xilinx.cpp | 0 xilinx.hpp => openFPGALoader/xilinx.hpp | 0 43 files changed, 7 insertions(+) create mode 100644 INSTALL.md rename altera.cpp => openFPGALoader/altera.cpp (100%) rename altera.hpp => openFPGALoader/altera.hpp (100%) rename bitparser.cpp => openFPGALoader/bitparser.cpp (100%) rename bitparser.hpp => openFPGALoader/bitparser.hpp (100%) rename board.hpp => openFPGALoader/board.hpp (100%) rename cable.hpp => openFPGALoader/cable.hpp (100%) rename configBitstreamParser.cpp => openFPGALoader/configBitstreamParser.cpp (100%) rename configBitstreamParser.hpp => openFPGALoader/configBitstreamParser.hpp (100%) rename device.cpp => openFPGALoader/device.cpp (100%) rename device.hpp => openFPGALoader/device.hpp (100%) rename display.cpp => openFPGALoader/display.cpp (100%) rename display.hpp => openFPGALoader/display.hpp (100%) rename epcq.cpp => openFPGALoader/epcq.cpp (100%) rename epcq.hpp => openFPGALoader/epcq.hpp (100%) rename fsparser.cpp => openFPGALoader/fsparser.cpp (100%) rename fsparser.hpp => openFPGALoader/fsparser.hpp (100%) rename ftdijtag.cpp => openFPGALoader/ftdijtag.cpp (100%) rename ftdijtag.hpp => openFPGALoader/ftdijtag.hpp (100%) rename ftdipp_mpsse.cpp => openFPGALoader/ftdipp_mpsse.cpp (100%) rename ftdipp_mpsse.hpp => openFPGALoader/ftdipp_mpsse.hpp (100%) rename ftdispi.cpp => openFPGALoader/ftdispi.cpp (100%) rename ftdispi.hpp => openFPGALoader/ftdispi.hpp (100%) rename gowin.cpp => openFPGALoader/gowin.cpp (100%) rename gowin.hpp => openFPGALoader/gowin.hpp (100%) rename jedParser.cpp => openFPGALoader/jedParser.cpp (100%) rename jedParser.hpp => openFPGALoader/jedParser.hpp (100%) rename lattice.cpp => openFPGALoader/lattice.cpp (100%) rename lattice.hpp => openFPGALoader/lattice.hpp (100%) rename latticeBitParser.cpp => openFPGALoader/latticeBitParser.cpp (100%) rename latticeBitParser.hpp => openFPGALoader/latticeBitParser.hpp (100%) rename main.cpp => openFPGALoader/main.cpp (100%) rename mcsParser.cpp => openFPGALoader/mcsParser.cpp (100%) rename mcsParser.hpp => openFPGALoader/mcsParser.hpp (100%) rename part.hpp => openFPGALoader/part.hpp (100%) rename progressBar.cpp => openFPGALoader/progressBar.cpp (100%) rename progressBar.hpp => openFPGALoader/progressBar.hpp (100%) rename spiFlash.cpp => openFPGALoader/spiFlash.cpp (100%) rename spiFlash.hpp => openFPGALoader/spiFlash.hpp (100%) rename svf_jtag.cpp => openFPGALoader/svf_jtag.cpp (100%) rename svf_jtag.hpp => openFPGALoader/svf_jtag.hpp (100%) rename xilinx.cpp => openFPGALoader/xilinx.cpp (100%) rename xilinx.hpp => openFPGALoader/xilinx.hpp (100%) diff --git a/INSTALL.md b/INSTALL.md new file mode 100644 index 0000000..fc60bc0 --- /dev/null +++ b/INSTALL.md @@ -0,0 +1,7 @@ +== Compile from source == + +``` +$ mkdir build +$ cd build +$ cmake ../openFPGALoader/ +$ cmake --build . diff --git a/altera.cpp b/openFPGALoader/altera.cpp similarity index 100% rename from altera.cpp rename to openFPGALoader/altera.cpp diff --git a/altera.hpp b/openFPGALoader/altera.hpp similarity index 100% rename from altera.hpp rename to openFPGALoader/altera.hpp diff --git a/bitparser.cpp b/openFPGALoader/bitparser.cpp similarity index 100% rename from bitparser.cpp rename to openFPGALoader/bitparser.cpp diff --git a/bitparser.hpp b/openFPGALoader/bitparser.hpp similarity index 100% rename from bitparser.hpp rename to openFPGALoader/bitparser.hpp diff --git a/board.hpp b/openFPGALoader/board.hpp similarity index 100% rename from board.hpp rename to openFPGALoader/board.hpp diff --git a/cable.hpp b/openFPGALoader/cable.hpp similarity index 100% rename from cable.hpp rename to openFPGALoader/cable.hpp diff --git a/configBitstreamParser.cpp b/openFPGALoader/configBitstreamParser.cpp similarity index 100% rename from configBitstreamParser.cpp rename to openFPGALoader/configBitstreamParser.cpp diff --git a/configBitstreamParser.hpp b/openFPGALoader/configBitstreamParser.hpp similarity index 100% rename from configBitstreamParser.hpp rename to openFPGALoader/configBitstreamParser.hpp diff --git a/device.cpp b/openFPGALoader/device.cpp similarity index 100% rename from device.cpp rename to openFPGALoader/device.cpp diff --git a/device.hpp b/openFPGALoader/device.hpp similarity index 100% rename from device.hpp rename to openFPGALoader/device.hpp diff --git a/display.cpp b/openFPGALoader/display.cpp similarity index 100% rename from display.cpp rename to openFPGALoader/display.cpp diff --git a/display.hpp b/openFPGALoader/display.hpp similarity index 100% rename from display.hpp rename to openFPGALoader/display.hpp diff --git a/epcq.cpp b/openFPGALoader/epcq.cpp similarity index 100% rename from epcq.cpp rename to openFPGALoader/epcq.cpp diff --git a/epcq.hpp b/openFPGALoader/epcq.hpp similarity index 100% rename from epcq.hpp rename to openFPGALoader/epcq.hpp diff --git a/fsparser.cpp b/openFPGALoader/fsparser.cpp similarity index 100% rename from fsparser.cpp rename to openFPGALoader/fsparser.cpp diff --git a/fsparser.hpp b/openFPGALoader/fsparser.hpp similarity index 100% rename from fsparser.hpp rename to openFPGALoader/fsparser.hpp diff --git a/ftdijtag.cpp b/openFPGALoader/ftdijtag.cpp similarity index 100% rename from ftdijtag.cpp rename to openFPGALoader/ftdijtag.cpp diff --git a/ftdijtag.hpp b/openFPGALoader/ftdijtag.hpp similarity index 100% rename from ftdijtag.hpp rename to openFPGALoader/ftdijtag.hpp diff --git a/ftdipp_mpsse.cpp b/openFPGALoader/ftdipp_mpsse.cpp similarity index 100% rename from ftdipp_mpsse.cpp rename to openFPGALoader/ftdipp_mpsse.cpp diff --git a/ftdipp_mpsse.hpp b/openFPGALoader/ftdipp_mpsse.hpp similarity index 100% rename from ftdipp_mpsse.hpp rename to openFPGALoader/ftdipp_mpsse.hpp diff --git a/ftdispi.cpp b/openFPGALoader/ftdispi.cpp similarity index 100% rename from ftdispi.cpp rename to openFPGALoader/ftdispi.cpp diff --git a/ftdispi.hpp b/openFPGALoader/ftdispi.hpp similarity index 100% rename from ftdispi.hpp rename to openFPGALoader/ftdispi.hpp diff --git a/gowin.cpp b/openFPGALoader/gowin.cpp similarity index 100% rename from gowin.cpp rename to openFPGALoader/gowin.cpp diff --git a/gowin.hpp b/openFPGALoader/gowin.hpp similarity index 100% rename from gowin.hpp rename to openFPGALoader/gowin.hpp diff --git a/jedParser.cpp b/openFPGALoader/jedParser.cpp similarity index 100% rename from jedParser.cpp rename to openFPGALoader/jedParser.cpp diff --git a/jedParser.hpp b/openFPGALoader/jedParser.hpp similarity index 100% rename from jedParser.hpp rename to openFPGALoader/jedParser.hpp diff --git a/lattice.cpp b/openFPGALoader/lattice.cpp similarity index 100% rename from lattice.cpp rename to openFPGALoader/lattice.cpp diff --git a/lattice.hpp b/openFPGALoader/lattice.hpp similarity index 100% rename from lattice.hpp rename to openFPGALoader/lattice.hpp diff --git a/latticeBitParser.cpp b/openFPGALoader/latticeBitParser.cpp similarity index 100% rename from latticeBitParser.cpp rename to openFPGALoader/latticeBitParser.cpp diff --git a/latticeBitParser.hpp b/openFPGALoader/latticeBitParser.hpp similarity index 100% rename from latticeBitParser.hpp rename to openFPGALoader/latticeBitParser.hpp diff --git a/main.cpp b/openFPGALoader/main.cpp similarity index 100% rename from main.cpp rename to openFPGALoader/main.cpp diff --git a/mcsParser.cpp b/openFPGALoader/mcsParser.cpp similarity index 100% rename from mcsParser.cpp rename to openFPGALoader/mcsParser.cpp diff --git a/mcsParser.hpp b/openFPGALoader/mcsParser.hpp similarity index 100% rename from mcsParser.hpp rename to openFPGALoader/mcsParser.hpp diff --git a/part.hpp b/openFPGALoader/part.hpp similarity index 100% rename from part.hpp rename to openFPGALoader/part.hpp diff --git a/progressBar.cpp b/openFPGALoader/progressBar.cpp similarity index 100% rename from progressBar.cpp rename to openFPGALoader/progressBar.cpp diff --git a/progressBar.hpp b/openFPGALoader/progressBar.hpp similarity index 100% rename from progressBar.hpp rename to openFPGALoader/progressBar.hpp diff --git a/spiFlash.cpp b/openFPGALoader/spiFlash.cpp similarity index 100% rename from spiFlash.cpp rename to openFPGALoader/spiFlash.cpp diff --git a/spiFlash.hpp b/openFPGALoader/spiFlash.hpp similarity index 100% rename from spiFlash.hpp rename to openFPGALoader/spiFlash.hpp diff --git a/svf_jtag.cpp b/openFPGALoader/svf_jtag.cpp similarity index 100% rename from svf_jtag.cpp rename to openFPGALoader/svf_jtag.cpp diff --git a/svf_jtag.hpp b/openFPGALoader/svf_jtag.hpp similarity index 100% rename from svf_jtag.hpp rename to openFPGALoader/svf_jtag.hpp diff --git a/xilinx.cpp b/openFPGALoader/xilinx.cpp similarity index 100% rename from xilinx.cpp rename to openFPGALoader/xilinx.cpp diff --git a/xilinx.hpp b/openFPGALoader/xilinx.hpp similarity index 100% rename from xilinx.hpp rename to openFPGALoader/xilinx.hpp