diff options
author | Marvin Borner | 2020-08-09 17:27:08 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-09 17:27:08 +0200 |
commit | 544acef0986977ef9d3a05d87bb9f55163b1280a (patch) | |
tree | 764d28f454b818c3ac19d59df17ecd914f9d7ecf /lib/inc/serial.h | |
parent | 162d024a53e1e31e00ff0b6f47dd4590edebc551 (diff) |
Temporary cpu and serial drivers in libc
Diffstat (limited to 'lib/inc/serial.h')
-rw-r--r-- | lib/inc/serial.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/inc/serial.h b/lib/inc/serial.h new file mode 100644 index 0000000..6511952 --- /dev/null +++ b/lib/inc/serial.h @@ -0,0 +1,9 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#ifndef SERIAL_H +#define SERIAL_H + +void serial_install(); +void serial_print(const char *data); + +#endif |