202eac3d3a
I added bootboot support to Limine because it was sent as a pull request by a friend. The following does not in any way place any blame on said friend. After having had to fix numerous bugs related to misunderstandings about the pretentious BOOTBOOT specification I've come to the conclusion that BOOTBOOT absolutely doesn't belong in Limine. If you want to boot a BOOTBOOT kernel with Limine just chainload the OG BOOTBOOT and don't pollute the source tree of Limine with having to support such a brain dead protocol. Legit, I didn't really read the BOOTBOOT spec prior to today and just winged the fixes to the BOOTBOOT proto code based on common sense, but it turns out that BOOTBOOT adheres to no common sense. Use stivale(2).
9 lines
99 B
C
9 lines
99 B
C
#ifndef __LIB__TIME_H__
|
|
#define __LIB__TIME_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
uint64_t time(void);
|
|
|
|
#endif
|