AVR8 opcode decoder

This commit is contained in:
Nav
2023-09-07 23:31:29 +01:00
parent d7891b386b
commit 20cbf14809
12 changed files with 2839 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <cstddef>
#include <algorithm>
template <std::size_t length>
struct FixedString
{
char value[length];
constexpr FixedString(const char (&str)[length]) {
std::copy_n(str, length, this->value);
}
};