summaryrefslogtreecommitdiff
path: root/applications/init/main.cpp
blob: 1a39513e832251e3f253ca19ac98a9444d78bfd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <hilbert/syscall.hpp>

using hilbert::syscall::encoded_color;
using hilbert::syscall::color;

encoded_color *fb;
uint32_t fb_width;
uint32_t fb_height;
uint32_t fb_pitch;

int main(int, char **) {

  hilbert::syscall::get_framebuffer(fb, fb_width, fb_height, fb_pitch);
  for (uint32_t y = 0; y < fb_height; ++y)
    for (uint32_t x = 0; x < fb_width; ++x) {
       color c = {
        .r = 0,
        .g = (uint8_t)(y * 255 / fb_height),
        .b = (uint8_t)(x * 255 / fb_width)
      };
      fb[y * fb_pitch + x] = hilbert::syscall::encode_color(c);
    }

  //*(int *)0x12345678 = 0;
  //fb_width = *(uint32_t *)0xffffffffc0000000;
  //return 100 / (uint8_t)(uint64_t)fb;
  return 0;

}