This repository has been archived on 2024-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef KLOG_H
|
|
#define KLOG_H 1
|
|
|
|
#include <types.h>
|
|
|
|
#define KLOG_BUFFER_SIZE 2 * 1024 * 1024
|
|
|
|
typedef struct __klogger
|
|
{
|
|
usize tty;
|
|
char buffer[KLOG_BUFFER_SIZE];
|
|
usize index;
|
|
} klogger;
|
|
|
|
#endif
|