openFPGALoader/device.cpp

25 lines
460 B
C++
Raw Normal View History

2019-09-26 18:29:20 +02:00
#include <iostream>
#include <stdexcept>
#include "device.hpp"
using namespace std;
2019-11-21 08:38:11 +01:00
Device::Device(FtdiJtag *jtag, string filename, bool verbose):
_filename(filename),
_file_extension(filename.substr(filename.find_last_of(".") +1)),
2019-11-21 08:38:11 +01:00
_mode(NONE_MODE), _verbose(verbose)
2019-09-26 18:29:20 +02:00
{
_jtag = jtag;
2019-11-21 08:38:11 +01:00
if (_verbose)
cout << "File type : " << _file_extension << endl;
2019-09-26 18:29:20 +02:00
}
Device::~Device() {}
2019-09-26 18:29:20 +02:00
void Device::reset()
{
throw std::runtime_error("Not implemented");
}