nuclear@3: /* nuclear@3: 72pin SIMM DRAM tester. nuclear@3: Copyright (C) 2017 John Tsiombikas nuclear@3: nuclear@3: This program is free software: you can redistribute it and/or modify nuclear@3: it under the terms of the GNU General Public License as published by nuclear@3: the Free Software Foundation, either version 3 of the License, or nuclear@3: (at your option) any later version. nuclear@3: nuclear@3: This program is distributed in the hope that it will be useful, nuclear@3: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@3: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@3: GNU General Public License for more details. nuclear@3: nuclear@3: You should have received a copy of the GNU General Public License nuclear@3: along with this program. If not, see . nuclear@3: */ nuclear@0: #ifndef SERIAL_H_ nuclear@0: #define SERIAL_H_ nuclear@0: nuclear@0: void init_serial(long baud); nuclear@0: int have_input(void); nuclear@0: nuclear@0: #endif /* SERIAL_H_ */