main.c 862 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // Created by longjin on 2022/1/20.
  3. //
  4. int *address = (int *)0xffff800000a00000; //帧缓存区的地址
  5. void show_color_band(int width, int height, char a, char b, char c, char d)
  6. {
  7. /** 向帧缓冲区写入像素值
  8. * @param address: 帧缓存区的地址
  9. * @param val:像素值
  10. */
  11. for (int i = 0; i < width * height; ++i)
  12. {
  13. *((char *)address + 0) = d;
  14. *((char *)address + 1) = c;
  15. *((char *)address + 2) = b;
  16. *((char *)address + 3) = a;
  17. ++address;
  18. }
  19. }
  20. //操作系统内核从这里开始执行
  21. void Start_Kernel(void)
  22. {
  23. show_color_band(1440, 20, 0x00, 0xff, 0x00, 0x00);
  24. show_color_band(1440, 20, 0x00, 0x00, 0xff, 0x00);
  25. show_color_band(1440, 20, 0x00, 0x00, 0x00, 0xff);
  26. show_color_band(1440, 20, 0x00, 0xff, 0xff, 0xff);
  27. while (1)
  28. ;
  29. }