Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

kernel.h (174B)


      1 #include <stdint.h>
      2 
      3 #pragma once
      4 #ifndef KERNEL_H
      5 #define KERNEL_H
      6 
      7 void kernel (uint32_t *f_base, uint64_t f_size, uint64_t pp_line, uint64_t maxX, uint64_t maxY);
      8 
      9 #endif