1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

Kernel: Rename BochsVGADevice to BXVGADevice.

This commit is contained in:
Andreas Kling 2019-02-17 08:40:30 +01:00
parent 10b43f3d1d
commit bd2fdcbbaa
4 changed files with 22 additions and 22 deletions

View file

@ -22,7 +22,7 @@
#include "PS2MouseDevice.h"
#include "PTYMultiplexer.h"
#include "DevPtsFS.h"
#include "BochsVGADevice.h"
#include "BXVGADevice.h"
//#define SPAWN_GUITEST
//#define SPAWN_LAUNCHER
@ -86,7 +86,7 @@ VFS* vfs;
vfs->register_device(*tty2);
vfs->register_device(*tty3);
vfs->register_device(BochsVGADevice::the());
vfs->register_device(BXVGADevice::the());
auto dev_hd0 = IDEDiskDevice::create();
auto e2fs = Ext2FS::create(dev_hd0.copy_ref());
@ -170,7 +170,7 @@ VFS* vfs;
MemoryManager::initialize();
PIT::initialize();
new BochsVGADevice;
new BXVGADevice;
auto new_procfs = ProcFS::create();
new_procfs->initialize();