fpgatools/bits.c
Wolfgang Spraul 86dc27efd5 minor cleanup
2012-08-16 12:17:37 +02:00

20 lines
350 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 "bits.h"
int read_bits(struct fpga_model* model, FILE* f)
{
return 0;
}
int write_bits(FILE* f, struct fpga_model* model)
{
return 0;
}