fpgatools/bit_frames.c

20 lines
394 B
C

//
// Author: Wolfgang Spraul
//
// This is free and unencumbered software released into the public domain.
// For details see the UNLICENSE file at the root of the source tree.
//
#include "model.h"
#include "bit.h"
int extract_model(struct fpga_model* model, uint8_t* bits, int bits_len)
{
return 0;
}
int write_model(uint8_t* bits, int bits_len, struct fpga_model* model)
{
return 0;
}