[Mammoth] Move remaining classes to a shared folder.

This commit is contained in:
Drew Galbraith 2023-11-22 14:39:27 -08:00
parent c42fb858ba
commit 5f8d577948
39 changed files with 55 additions and 56 deletions

View file

@ -1,6 +1,6 @@
#include "framebuffer/console.h"
#include <mammoth/debug.h>
#include <mammoth/util/debug.h>
void Console::WriteChar(char c) {
if (c == '\n') {

View file

@ -1,6 +1,6 @@
#pragma once
#include <mammoth/memory_region.h>
#include <mammoth/util/memory_region.h>
#include <yellowstone/yellowstone.yunq.h>
class Framebuffer {

View file

@ -1,7 +1,7 @@
#include "framebuffer/psf.h"
#include <glacier/memory/move.h>
#include <mammoth/debug.h>
#include <mammoth/util/debug.h>
namespace {

View file

@ -1,6 +1,6 @@
#pragma once
#include <mammoth/memory_region.h>
#include <mammoth/util/memory_region.h>
struct PsfHeader {
uint32_t magic; /* magic bytes to identify PSF */

View file

@ -1,5 +1,5 @@
#include <mammoth/debug.h>
#include <mammoth/init.h>
#include <mammoth/util/debug.h>
#include <mammoth/util/init.h>
#include <victoriafalls/victoriafalls.yunq.client.h>
#include <yellowstone/yellowstone.yunq.client.h>