Snazz up the kprintf() output a bit by giving it its own color.

This commit is contained in:
Andreas Kling 2018-10-31 20:10:39 +01:00
commit dec5683e9c
Notes: sideshowbarker 2024-07-19 18:35:41 +09:00
10 changed files with 86 additions and 78 deletions

View file

@ -34,7 +34,7 @@ bool IDEDiskDevice::writeBlock(unsigned index, const byte* data)
{
(void) index;
(void) data;
kprintf("[IDEDiskDevice] writeBlock not implemented()\n");
kprintf("IDEDiskDevice: writeBlock not implemented()\n");
notImplemented();
return false;
}