Merge pull request #596 from enjoy-digital/gw5at-15
src/gowin: Add support for GW5AT-15 (used on Sipeed Slogic16U3).
This commit is contained in:
commit
9f6887e082
|
|
@ -195,6 +195,7 @@ int FsParser::parse()
|
|||
nb_line = 2038;
|
||||
break;
|
||||
case 0x0001281b: /* GW5A-25 */
|
||||
case 0x0001681b: /* GW5AT-15 */
|
||||
case 0x0001481b: /* GW5AT-60 */
|
||||
case 0x0001081b: /* GW5AST-138 */
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -217,6 +217,7 @@ bool Gowin::detectFamily()
|
|||
is_gw2a = true;
|
||||
break;
|
||||
case 0x0001081b: /* GW5AST-138 */
|
||||
case 0x0001681b: /* GW5AT-15 */
|
||||
case 0x0001481b: /* GW5AT-60 */
|
||||
case 0x0001181b: /* GW5AT-138 */
|
||||
case 0x0001281b: /* GW5A-25 */
|
||||
|
|
|
|||
|
|
@ -349,6 +349,7 @@ static std::map <uint32_t, fpga_model> fpga_list = {
|
|||
|
||||
/* Gowin GW5 */
|
||||
{0x0001081b, {"Gowin", "GW5AST", "GW5AST-138", 8}},
|
||||
{0x0001681b, {"Gowin", "GW5AT", "GW5AT-15", 8}},
|
||||
{0x0001481b, {"Gowin", "GW5AT", "GW5AT-60", 8}},
|
||||
{0x0001181b, {"Gowin", "GW5AT", "GW5AT-138", 8}},
|
||||
{0x0001281b, {"Gowin", "GW5A", "GW5A-25", 8}},
|
||||
|
|
|
|||
Loading…
Reference in New Issue