From e16f92199a764b78a22e263fe4c72ad3bf677fd2 Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Tue, 28 Apr 2020 18:21:07 +0200 Subject: [PATCH] tested with Xilinx spartan6 --- README.md | 1 + src/part.hpp | 3 +++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 237ca3f..873257e 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ __Supported (tested) FPGA:__ * Lattice [MachXO3LF](http://www.latticesemi.com/en/Products/FPGAandCPLD/MachXO3.aspx) (SRAM and Flash) * Lattice [ECP5 (25F, 5G 85F](http://www.latticesemi.com/Products/FPGAandCPLD/ECP5) (SRAM and Flash) * Xilinx Artix 7 [xc7a35ti, xc7a100t](https://www.xilinx.com/products/silicon-devices/fpga/artix-7.html) (memory (all) and spi flash (xc7a35ti) +* Xilinx Spartan 6 [xc6slx45](https://www.xilinx.com/products/silicon-devices/fpga/spartan-6.html) (memory) * Xilinx Spartan 7 [xc7s15](https://www.xilinx.com/products/silicon-devices/fpga/spartan-7.html) (memory) * Intel Cyclone 10 LP [10CL025](https://www.intel.com/content/www/us/en/products/programmable/fpga/cyclone-10.html) diff --git a/src/part.hpp b/src/part.hpp index 53a38b2..c083715 100644 --- a/src/part.hpp +++ b/src/part.hpp @@ -13,7 +13,10 @@ typedef struct { static std::map fpga_list = { {0x0362D093, {"xilinx", "artix a7 35t", "xc7a35"}}, {0x13631093, {"xilinx", "artix a7 100t", "xc7a100"}}, + + {0x44008093, {"xilinx", "spartan6", "xc6slx45"}}, {0x03620093, {"xilinx", "spartan7", "xc7s15ftgb196-1"}}, + {0x020f30dd, {"altera", "cyclone 10 LP", "10CL025"}}, {0xE12BB043, {"lattice", "MachXO3LF", "LCMX03LF-1300C"}},