mirror of
https://git.checksum.fail/alec/erythros
synced 2025-12-11 21:49:53 +02:00
Meta: Add files to repository
This commit is contained in:
26
System/Drivers/Display.HC
Normal file
26
System/Drivers/Display.HC
Normal file
@@ -0,0 +1,26 @@
|
||||
class @display
|
||||
{
|
||||
I64 width;
|
||||
I64 height;
|
||||
I64 bpp;
|
||||
I64 driver;
|
||||
U64 fb;
|
||||
|
||||
U0(*Init)
|
||||
(I64 width, I64 height, I64 bpp, I64 driver);
|
||||
I64(*Width)
|
||||
();
|
||||
I64(*Height)
|
||||
();
|
||||
I64(*Bpp)
|
||||
();
|
||||
I64(*Driver)
|
||||
();
|
||||
U0 (*Update)();
|
||||
};
|
||||
|
||||
@display Display;
|
||||
Display.driver = NULL;
|
||||
Display.Update = NULL;
|
||||
|
||||
"display ";
|
||||
Reference in New Issue
Block a user