Organize source tree

This commit is contained in:
apio 2022-11-19 17:59:49 +01:00
parent a44e2f41fe
commit 70c6b78e35
9 changed files with 13 additions and 13 deletions

View File

@ -1,5 +1,5 @@
#include "arch/MMU.h" #include "arch/MMU.h"
#include "MemoryManager.h" #include "memory/MemoryManager.h"
#include <String.h> #include <String.h>
#define PAGE_SIZE 4096 #define PAGE_SIZE 4096

View File

@ -1,9 +1,9 @@
#include "Init.h" #include "boot/Init.h"
#include "Framebuffer.h"
#include "MemoryManager.h"
#include "arch/CPU.h" #include "arch/CPU.h"
#include "arch/Serial.h" #include "arch/Serial.h"
#include "bootboot.h" #include "boot/bootboot.h"
#include "memory/MemoryManager.h"
#include "video/Framebuffer.h"
#include <String.h> #include <String.h>
extern BOOTBOOT bootboot; extern BOOTBOOT bootboot;

View File

@ -1,5 +1,5 @@
/* /*
* bootboot.h * boot/bootboot.h
* https://gitlab.com/bztsrc/bootboot * https://gitlab.com/bztsrc/bootboot
* *
* Copyright (C) 2017 - 2021 bzt (bztsrc@gitlab) * Copyright (C) 2017 - 2021 bzt (bztsrc@gitlab)

View File

@ -1,9 +1,9 @@
#include "Framebuffer.h"
#include "Init.h"
#include "MemoryManager.h"
#include "arch/CPU.h" #include "arch/CPU.h"
#include "arch/MMU.h" #include "arch/MMU.h"
#include "arch/Serial.h" #include "arch/Serial.h"
#include "boot/Init.h"
#include "memory/MemoryManager.h"
#include "video/Framebuffer.h"
extern u8 fb[1]; extern u8 fb[1];

View File

@ -1,7 +1,7 @@
#include "MemoryManager.h" #include "memory/MemoryManager.h"
#include "arch/MMU.h" #include "arch/MMU.h"
#include "arch/Serial.h" #include "arch/Serial.h"
#include "bootboot.h" #include "boot/bootboot.h"
#include <Alignment.h> #include <Alignment.h>
#include <String.h> #include <String.h>
#include <Types.h> #include <Types.h>

View File

@ -1,5 +1,5 @@
#include "Framebuffer.h" #include "video/Framebuffer.h"
#include "bootboot.h" #include "boot/bootboot.h"
static u8* g_fb_ptr = nullptr; static u8* g_fb_ptr = nullptr;
static u32 g_fb_size; static u32 g_fb_size;