Config header file + comment header
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
/*
|
||||
* @author xamidev <xamidev@riseup.net>
|
||||
* @brief Framebuffer-based terminal driver
|
||||
* @license GPL-3.0-only
|
||||
*/
|
||||
|
||||
// Terminal output
|
||||
/*
|
||||
There are a couple of bugs here and there but for now I don't care too much
|
||||
@@ -10,6 +16,7 @@ because this shitty implementation will be replaced one day by Flanterm
|
||||
#include <kernel.h>
|
||||
#include "term.h"
|
||||
#include "mem/misc/utils.h"
|
||||
#include "config.h"
|
||||
|
||||
extern struct boot_context boot_ctx;
|
||||
|
||||
@@ -37,7 +44,7 @@ static Cursor cursor = {0, 0};
|
||||
static uint8_t* fb;
|
||||
static struct limine_framebuffer* framebuffer;
|
||||
|
||||
uint8_t lines_length[MAX_LINES];
|
||||
uint8_t lines_length[TERM_HISTORY_MAX_LINES];
|
||||
|
||||
static inline size_t term_max_cols(void)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user