13 lines
381 B
C
13 lines
381 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.
|
|
//
|
|
|
|
int fpga_find_iob(struct fpga_model* model, const char* sitename,
|
|
int* y, int* x, int* idx);
|
|
|
|
struct fpga_device* fpga_dev(struct fpga_model* model,
|
|
int y, int x, enum fpgadev_type type, int idx);
|