TargetMemorySegmentType enum (should have been included in a previous commit)

This commit is contained in:
Nav
2024-03-15 18:46:14 +00:00
parent 64af03c101
commit 9002d739fe

View File

@@ -0,0 +1,22 @@
#pragma once
#include <cstdint>
namespace Targets
{
enum class TargetMemorySegmentType: std::uint8_t
{
ALIASED,
REGISTERS,
EEPROM,
FLASH,
FUSES,
IO,
RAM,
LOCKBITS,
OSCCAL,
PRODUCTION_SIGNATURES,
SIGNATURES,
USER_SIGNATURES,
};
}