Mon 14 Oct 23:06:38 CEST 2024

This commit is contained in:
sbosse 2024-10-14 23:08:18 +02:00
parent 69d68cc839
commit 7c12d04cae

19
kernel/serial.h Normal file
View File

@ -0,0 +1,19 @@
/*
Copyright (C) 2016-2019 The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file LICENSE for details.
*/
#ifndef SERIAL_H
#define SERIAL_H
void serial_init();
char serial_read(int port_no);
void serial_write(int port_no, char a);
int serial_device_probe( int unit, int *blocksize, int *nblocks, char *info );
int serial_device_read( int unit, void *data, int length, int offset );
int serial_device_write( int unit, const void *data, int length, int offset );
#endif