aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/blif/blifparse.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-05-17 14:44:28 +0200
committerClifford Wolf <clifford@clifford.at>2015-05-17 14:44:28 +0200
commit7dad017c9ce7b00a1aa3cc0b323297d8fe2cccf5 (patch)
tree78ee2b0dee42b5d08b4cff8b8eedfe97fc7717ab /frontends/blif/blifparse.h
parent61512b6f4115fce5326b78914b675be278c6845f (diff)
downloadyosys-7dad017c9ce7b00a1aa3cc0b323297d8fe2cccf5.tar.gz
yosys-7dad017c9ce7b00a1aa3cc0b323297d8fe2cccf5.tar.bz2
yosys-7dad017c9ce7b00a1aa3cc0b323297d8fe2cccf5.zip
abc/blifparse files reorganization
Diffstat (limited to 'frontends/blif/blifparse.h')
-rw-r--r--frontends/blif/blifparse.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/frontends/blif/blifparse.h b/frontends/blif/blifparse.h
new file mode 100644
index 000000000..31f5b2e5c
--- /dev/null
+++ b/frontends/blif/blifparse.h
@@ -0,0 +1,31 @@
+/*
+ * yosys -- Yosys Open SYnthesis Suite
+ *
+ * Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ */
+
+#ifndef ABC_BLIFPARSE
+#define ABC_BLIFPARSE
+
+#include "kernel/yosys.h"
+
+YOSYS_NAMESPACE_BEGIN
+
+extern RTLIL::Design *abc_parse_blif(FILE *f, std::string dff_name);
+
+YOSYS_NAMESPACE_END
+
+#endif