mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-30 18:02:38 +02:00
14 lines
226 B
C++
14 lines
226 B
C++
#ifndef BOARD_HPP
|
|
#define BOARD_HPP
|
|
|
|
#include <map>
|
|
|
|
static std::map <std::string, std::string > board_list = {
|
|
{"arty", "digilent"},
|
|
{"cyc1000", "ft2232"},
|
|
{"de0nano", "usbblaster"},
|
|
{"machXO3SK", "ft2232"}
|
|
};
|
|
|
|
#endif
|