Meta: Add files to repository
This commit is contained in:
parent
80a0428b66
commit
39198164cd
1029 changed files with 78311 additions and 0 deletions
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 ";
|
Loading…
Add table
Add a link
Reference in a new issue