I wrote a fast first stage bootloader and a installer to put it into a disk image.
7 lines
118 B
C++
7 lines
118 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
uint32_t crc32_checksum(const uint8_t* data, std::size_t count);
|