Bootloader: Start work on bootloader

I wrote a fast first stage bootloader and a installer to put it into
a disk image.
This commit is contained in:
2023-11-09 22:42:47 +02:00
parent bc8fd1285f
commit cfc7313451
15 changed files with 984 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#pragma once
#include <cstddef>
#include <cstdint>
uint32_t crc32_checksum(const uint8_t* data, std::size_t count);