Skip to content

Commit fe1cec7

Browse files
committed
add hex Store slots. 0 is reserved for Load
1 parent cf874c5 commit fe1cec7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Source/Heavy/OWLExporter.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ class OWLExporter : public ExporterBase {
2020
Array<PropertiesPanelProperty*> properties;
2121
properties.add(new PropertiesPanel::ComboComponent("Target board", targetBoardValue, { "OWL1", "OWL2", "OWL3" }));
2222
properties.add(new PropertiesPanel::ComboComponent("Export type", exportTypeValue, { "Source code", "Binary", "Load", "Store" }));
23-
storeSlotProperty = new PropertiesPanel::ComboComponent("Store slot", storeSlotValue, { "1", "2", "3", "4", "5", "6", "7", "8" });
23+
storeSlotProperty = new PropertiesPanel::ComboComponent(
24+
"Store slot", storeSlotValue, {
25+
"1", "2", "3", "4", "5", "6", "7", "8", "9",
26+
"A", "B", "C", "D", "E", "F"
27+
}
28+
);
2429
properties.add(storeSlotProperty);
2530

2631
for (auto* property : properties) {

0 commit comments

Comments
 (0)