Added executable flag to memory segments in TDFs

This commit is contained in:
Nav
2024-04-29 20:25:36 +01:00
parent c0836a1b6d
commit 081d1e0bcd
267 changed files with 2635 additions and 2619 deletions

View File

@@ -13,6 +13,7 @@ class MemorySegment
public ?int $size = null;
public ?int $pageSize = null;
public ?string $access = null;
public ?bool $executable = null;
/** @var MemorySegmentSection[] */
public array $sections = [];
@@ -25,7 +26,8 @@ class MemorySegment
?int $size,
?int $pageSize,
?string $access,
array $sections
array $sections,
?bool $executable
) {
$this->key = $key;
$this->name = $name;
@@ -35,6 +37,7 @@ class MemorySegment
$this->pageSize = $pageSize;
$this->access = $access;
$this->sections = $sections;
$this->executable = $executable;
}
public function getSection(string $sectionId): ?MemorySegmentSection

View File

@@ -533,7 +533,8 @@ class AtdfService
$bootSectionSegment->size,
[]
)
]
],
$appSectionSegment->executable
)
];
}
@@ -556,7 +557,8 @@ class AtdfService
$this->stringService->tryStringToInt($attributes['size'] ?? null),
$this->stringService->tryStringToInt($attributes['pagesize'] ?? null),
$attributes['rw'] ?? null,
[]
[],
isset($attributes['exec']) ? (bool) $attributes['exec'] : null
);
}

View File

@@ -334,6 +334,10 @@ class ValidationService
$failures[] = 'Size exceeds 32-bit unsigned integer';
}
if ($segment->executable === null) {
$failures[] = 'Missing executable';
}
$processedSectionKeys = [];
foreach ($segment->sections as $section) {
$failures = array_merge($failures, $this->validateMemorySegmentSection($section));

View File

@@ -144,7 +144,8 @@ class FromXmlService
$this->stringService->tryStringToInt($attributes['size'] ?? null),
$this->stringService->tryStringToInt($attributes['page-size'] ?? null),
$attributes['access'] ?? null,
[]
[],
isset($attributes['executable']) ? (bool) $attributes['executable'] : null
);
foreach ($element->childNodes as $childNode) {

View File

@@ -102,6 +102,8 @@ class ToXmlService
$element->append($this->memorySegmentSectionToXml($segmentSection, $document));
}
$element->setAttribute('executable',$memorySegment->executable ? '1' : '0');
return $element;
}

View File

@@ -19,6 +19,7 @@ namespace Targets::TargetDescription
TargetMemorySegmentType type;
TargetMemoryAddress startAddress;
TargetMemorySize size;
bool executable;
TargetMemoryAccess access;
std::optional<TargetMemorySize> pageSize;
std::map<std::string, MemorySegmentSection, std::less<void>> sectionsByKey;
@@ -29,6 +30,7 @@ namespace Targets::TargetDescription
TargetMemorySegmentType type,
TargetMemoryAddress startAddress,
TargetMemorySize size,
bool executable,
const TargetMemoryAccess& access,
const std::optional<TargetMemorySize>& pageSize,
const std::map<std::string, MemorySegmentSection, std::less<void>>& sectionsByKey
@@ -38,6 +40,7 @@ namespace Targets::TargetDescription
, type(type)
, startAddress(startAddress)
, size(size)
, executable(executable)
, access(access)
, pageSize(pageSize)
, sectionsByKey(sectionsByKey)

View File

@@ -800,6 +800,7 @@ namespace Targets::TargetDescription
memorySegment.startAddress,
memorySegment.startAddress + memorySegment.size - 1
),
memorySegment.executable,
memorySegment.access,
memorySegment.access,
memorySegment.pageSize

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00004000" size="16384" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007800" size="2048" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="16384" page-size="512" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007800" size="2048" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="16384" page-size="512" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007800" size="2048" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="16384" page-size="512" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007800" size="2048" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="16384" page-size="512" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007800" size="2048" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="16384" page-size="512" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007800" size="2048" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="16384" page-size="512" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007800" size="2048" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="16384" page-size="512" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007800" size="2048" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="16384" page-size="512" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00007000" size="4096" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="1" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="1" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006000" size="8192" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="1" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="512" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="512" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -17,21 +17,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="4" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="8" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="64" page-size="64" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="8" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006800" size="6144" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="128" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="4" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="8" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="64" page-size="64" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="8" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006800" size="6144" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="128" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="128" access="RW">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="128" access="RW" executable="1">
<section key="progmem_nrww" name="PROGMEM_NRWW" start="0x00000000" size="8192"/>
<section key="progmem_rww" name="PROGMEM_RWW" start="0x00002000" size="57344"/>
</memory-segment>

View File

@@ -17,21 +17,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="4" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="8" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="64" page-size="64" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="8" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006800" size="6144" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="128" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="4" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="8" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="64" page-size="64" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="8" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006800" size="6144" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="128" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="128" access="RW">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="128" access="RW" executable="1">
<section key="progmem_nrww" name="PROGMEM_NRWW" start="0x00000000" size="8192"/>
<section key="progmem_rww" name="PROGMEM_RWW" start="0x00002000" size="57344"/>
</memory-segment>

View File

@@ -17,21 +17,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="4" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="8" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="64" page-size="64" access="RW"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="8" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006800" size="6144" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="128" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4159" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00001040" size="4" page-size="4" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001050" size="16" page-size="8" access="RW" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001080" size="64" page-size="64" access="RW" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="512" page-size="8" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00006800" size="6144" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00008000" size="32768" page-size="128" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="128" access="RW">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="128" access="RW" executable="1">
<section key="progmem_nrww" name="PROGMEM_NRWW" start="0x00000000" size="8192"/>
<section key="progmem_rww" name="PROGMEM_RWW" start="0x00002000" size="57344"/>
</memory-segment>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00001100" size="61184"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00001100" size="61184" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="2048"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00000900" size="63232"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="2048" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00000900" size="63232" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="1024" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="1024" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="1024" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00001100" size="61184"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00001100" size="61184" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="2048" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="2048" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="2048" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="8192" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="64" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="64" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="768" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="2" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="2" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="2" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="8192" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="64" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="64" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="768" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="8192" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="64" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="64" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="768" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="8192" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="64" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="64" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="512" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="256"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="256" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="8192"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="8192" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="8192"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="8192" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="768" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>
@@ -577,7 +577,7 @@
<register key="gpior2" name="GPIOR2" description="General Purpose IO Register 2" offset="0x4B" size="1">
<bit-field key="gpior" name="GPIOR" description="General Purpose IO Register 2 bis" mask="0xFF"/>
</register>
<register key="dwdr" name="DWDR" description="debugWire communication register" offset="0x51" size="1"/>
<register key="dwdr" name="DWDR" description="debugWIRE communication register" offset="0x51" size="1"/>
<register key="smcr" name="SMCR" description="Sleep Mode Control Register" offset="0x53" size="1">
<bit-field key="sm" name="SM" description="Sleep Mode Select bits" mask="0xE"/>
<bit-field key="se" name="SE" description="Sleep Enable" mask="0x1"/>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="2048" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="2048" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="2048" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="65536" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="2048" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="2048" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="2048" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="8192" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="8192" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="768" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>
@@ -577,7 +577,7 @@
<register key="gpior2" name="GPIOR2" description="General Purpose IO Register 2" offset="0x4B" size="1">
<bit-field key="gpior" name="GPIOR" description="General Purpose IO Register 2 bis" mask="0xFF"/>
</register>
<register key="dwdr" name="DWDR" description="debugWire communication register" offset="0x51" size="1"/>
<register key="dwdr" name="DWDR" description="debugWIRE communication register" offset="0x51" size="1"/>
<register key="smcr" name="SMCR" description="Sleep Mode Control Register" offset="0x53" size="1">
<bit-field key="sm" name="SM" description="Sleep Mode Select bits" mask="0xE"/>
<bit-field key="se" name="SE" description="Sleep Enable" mask="0x1"/>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00001100" size="61184"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00001100" size="61184" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="4" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="8192"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="8192" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="8192"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="8192" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="16640" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="16384"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="16384" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="16640" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="16384"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="16384" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,30 +162,30 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="user_signatures" start="0x00000100" size="768" endianness="little">
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00000100" size="768" page-size="256" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00000100" size="768" page-size="256" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="16896" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="16384"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="16384" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00001100" size="61184"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="4096" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00001100" size="61184" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="4" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="16896" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="16384"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="16384" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,30 +162,30 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="131072" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="131072" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="user_signatures" start="0x00000100" size="768" endianness="little">
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00000100" size="768" page-size="256" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00000100" size="768" page-size="256" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="16896" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="16384"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="16384" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="2" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="2" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="2" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1120" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="64"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000060" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="64" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000060" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="4" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="32" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001280" size="10" page-size="32" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00003800" size="2048" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4352" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x0000128A" size="1" page-size="32" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00004000" size="16384" page-size="64" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="61" page-size="64" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="64" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001300" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="32" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001280" size="10" page-size="32" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00003800" size="2048" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4352" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x0000128A" size="1" page-size="32" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00004000" size="16384" page-size="64" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="61" page-size="64" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="64" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001300" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="64" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="64" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -21,21 +21,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="32" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001280" size="10" page-size="32" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00003800" size="2048" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4352" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x0000128A" size="1" page-size="32" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00004000" size="16384" page-size="64" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="61" page-size="64" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="64" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001300" size="32" page-size="32" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="32" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001280" size="10" page-size="32" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00003800" size="2048" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4352" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x0000128A" size="1" page-size="32" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00004000" size="16384" page-size="64" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="61" page-size="64" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="64" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001300" size="32" page-size="32" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="64" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="64" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,28 +188,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00000500" size="64256"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00000500" size="64256" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="2" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="2" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="2" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1120" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="64"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000060" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="64" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000060" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="4" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1024" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="768" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="512" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>
@@ -654,7 +654,7 @@
<register key="gpior2" name="GPIOR2" description="General Purpose IO Register 2" offset="0x4B" size="1">
<bit-field key="gpior" name="GPIOR" description="General Purpose IO Register 2 bis" mask="0xFF"/>
</register>
<register key="dwdr" name="DWDR" description="debugWire communication register" offset="0x51" size="1"/>
<register key="dwdr" name="DWDR" description="debugWIRE communication register" offset="0x51" size="1"/>
<register key="smcr" name="SMCR" description="Sleep Mode Control Register" offset="0x53" size="1">
<bit-field key="sm" name="SM" description="Sleep Mode Select bits" mask="0xE"/>
<bit-field key="se" name="SE" description="Sleep Enable" mask="0x1"/>

View File

@@ -162,27 +162,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="16384" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="16384" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="1536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1280"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="1280" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="512" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="512" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="262144" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="262144" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="262144" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="8192"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="8192" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,28 +162,28 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="262144" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="262144" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="262144" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="8192"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="8192" executable="0"/>
<memory-segment key="xram" name="XRAM" type="ram" start="0x00002200" size="56832" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="4096" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="4096" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,30 +162,30 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="262144" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="262144" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="262144" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="user_signatures" start="0x00000100" size="768" endianness="little">
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00000100" size="768" page-size="256" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00000100" size="768" page-size="256" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="33280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="32768"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="32768" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="8192" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="8192" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="8192" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -162,30 +162,30 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="262144" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="262144" page-size="256" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="262144" page-size="256" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="user_signatures" start="0x00000100" size="768" endianness="little">
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00000100" size="768" page-size="256" access="RW"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00000100" size="768" page-size="256" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="33280" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="32768"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="480" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000200" size="32768" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="8192" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="8192" page-size="8" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="8192" page-size="8" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="2" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="2" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="2" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="2144" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="64"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000060" size="2048"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="64" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000060" size="2048" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="1024" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="1024" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="1024" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="4" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="4" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="64" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001280" size="10" page-size="64" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00003000" size="4096" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4352" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x0000128A" size="1" page-size="64" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00004000" size="32768" page-size="128" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001300" size="64" page-size="64" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="64" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001280" size="10" page-size="64" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00003000" size="4096" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4352" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x0000128A" size="1" page-size="64" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00004000" size="32768" page-size="128" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001300" size="64" page-size="64" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -20,21 +20,21 @@
</property-groups>
<address-spaces>
<address-space key="register_file" start="0x00000000" size="32" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="65536" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="64" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001280" size="10" page-size="64" access="RW"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00003000" size="4096" access="RW"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4352" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x0000128A" size="1" page-size="64" access="RW"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00004000" size="32768" page-size="128" access="RW"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001300" size="64" page-size="64" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00001400" size="256" page-size="64" access="RW" executable="0"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00001280" size="10" page-size="64" access="RW" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00003000" size="4096" access="RW" executable="0"/>
<memory-segment key="io" name="Input/Output" type="io" start="0x00000000" size="4352" access="RW" executable="0"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x0000128A" size="1" page-size="64" access="RW" executable="0"/>
<memory-segment key="mapped_progmem" name="MAPPED_PROGMEM" type="aliased" start="0x00004000" size="32768" page-size="128" access="RW" executable="0"/>
<memory-segment key="prod_signatures" name="Production Signatures" type="production_signatures" start="0x00001103" size="125" page-size="128" access="R" executable="0"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00001100" size="3" page-size="128" access="R" executable="0"/>
<memory-segment key="user_signatures" name="User Signatures" type="user_signatures" start="0x00001300" size="64" page-size="64" access="RW" executable="0"/>
</address-space>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW" executable="1"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="2304" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="2048"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="2048" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="1024" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="1024" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="1024" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

View File

@@ -188,27 +188,27 @@
</property-groups>
<address-spaces>
<address-space key="prog" start="0x00000000" size="32768" endianness="little">
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW"/>
<memory-segment key="internal_program_memory" name="Internal FLASH" type="flash" start="0x00000000" size="32768" page-size="128" access="RW" executable="1"/>
</address-space>
<address-space key="signatures" start="0x00000000" size="3" endianness="little">
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R"/>
<memory-segment key="signatures" name="Signatures" type="signatures" start="0x00000000" size="3" access="R" executable="0"/>
</address-space>
<address-space key="fuses" start="0x00000000" size="3" endianness="little">
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW"/>
<memory-segment key="fuses" name="Fuses" type="fuses" start="0x00000000" size="3" access="RW" executable="0"/>
</address-space>
<address-space key="lockbits" start="0x00000000" size="1" endianness="little">
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW"/>
<memory-segment key="lockbits" name="Lockbits" type="lockbits" start="0x00000000" size="1" access="RW" executable="0"/>
</address-space>
<address-space key="data" start="0x00000000" size="2304" endianness="little">
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="2048"/>
<memory-segment key="gp_registers" name="General Purpose Registers" type="gp_registers" start="0x00000000" size="32" executable="0"/>
<memory-segment key="mapped_io" name="Mapped Input/Output" type="io" start="0x00000020" size="224" executable="0"/>
<memory-segment key="internal_ram" name="Internal RAM" type="ram" start="0x00000100" size="2048" executable="0"/>
</address-space>
<address-space key="eeprom" start="0x00000000" size="1024" endianness="little">
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="1024" page-size="4" access="RW"/>
<memory-segment key="internal_eeprom" name="Internal EEPROM" type="eeprom" start="0x00000000" size="1024" page-size="4" access="RW" executable="0"/>
</address-space>
<address-space key="osccal" start="0x00000000" size="1" endianness="little">
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R"/>
<memory-segment key="osccal" name="OSCCAL" type="osccal" start="0x00000000" size="1" access="R" executable="0"/>
</address-space>
</address-spaces>
<physical-interfaces>

Some files were not shown because too many files have changed in this diff Show More