TargetMemorySegmentType enum (should have been included in a previous commit)
This commit is contained in:
22
src/Targets/TargetMemorySegmentType.hpp
Normal file
22
src/Targets/TargetMemorySegmentType.hpp
Normal 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,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user