20 lines
350 B
C
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;
|
|
}
|