mirror of
https://github.com/cccriscv/mini-riscv-os.git
synced 2025-11-16 12:34:33 +00:00
13 lines
210 B
C
13 lines
210 B
C
#ifndef __LIB_H__
|
|
#define __LIB_H__
|
|
|
|
#include "riscv.h"
|
|
#include <stddef.h>
|
|
#include <stdarg.h>
|
|
|
|
extern void lib_delay(volatile int count);
|
|
extern int lib_putc(char ch);
|
|
extern void lib_puts(char *s);
|
|
|
|
#endif
|