1234567891011121314151617181920212223242526272829303132333435363738394041 |
- int *address = (int *)0xffff800000a00000;
- void show_color_band(int width, int height, char a, char b, char c, char d)
- {
-
- for (int i = 0; i < width * height; ++i)
- {
- *((char *)address + 0) = d;
- *((char *)address + 1) = c;
- *((char *)address + 2) = b;
- *((char *)address + 3) = a;
- ++address;
- }
- }
- void Start_Kernel(void)
- {
-
-
- show_color_band(1440, 20, 0x00, 0xff, 0x00, 0x00);
- show_color_band(1440, 20, 0x00, 0x00, 0xff, 0x00);
- show_color_band(1440, 20, 0x00, 0x00, 0x00, 0xff);
- show_color_band(1440, 20, 0x00, 0xff, 0xff, 0xff);
- while (1)
- ;
- }
|