BeeBS
A simple operating system, I assure you.
Loading...
Searching...
No Matches
nucleus.h
1#ifndef _NUCLEUS_H_
2#define _NUCLEUS_H_
3
4#include <stddef.h>
5
6// This define is valid if L2 cache is enabled, otherwise 0xC0000000
7#define MEM_NONCACHE_OFFSET 0xC0000000 //0x40000000
8
9extern void cpu_data_memory_barrier(void);
10
11#define KERNEL_LOG_SIZE 16
12
13#define CONSOLE_ROWS 16
14
15void print(const char*);
16
17#endif