module BlifUtils
Copyright (C) 2017 Théotime bollengier <theotime.bollengier@gmail.com>
This file is part of Blifutils.
Blifutils is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Blifutils is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Blifutils. If not, see <www.gnu.org/licenses/>.
Copyright (C) 2017 Théotime bollengier <theotime.bollengier@gmail.com>
This file is part of Blifutils.
Blifutils is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Blifutils is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Blifutils. If not, see <www.gnu.org/licenses/>.
Copyright (C) 2017 Théotime bollengier <theotime.bollengier@gmail.com>
This file is part of Blifutils.
Blifutils is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Blifutils is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Blifutils. If not, see <www.gnu.org/licenses/>.
Constants
- VERSION
Public Class Methods
# File lib/blifutils/elaborator.rb, line 252 def self.read(fileName, quiet: false, default_latch_type: nil, default_latch_clock: nil, default_latch_initial_value: nil) ast = BlifUtils::Parser.parse(fileName, quiet: quiet) netlist = BlifUtils::Elaborator.elaborate_netlist(ast, quiet: quiet, default_latch_type: nil, default_latch_clock: nil, default_latch_initial_value: nil) return netlist end