Make name of sections in XML file a necessary string with a minimum length of 1

This commit is contained in:
Mario Hüttel 2023-01-06 17:30:37 +01:00
parent 06fe82b2f1
commit e93b42dd40
1 changed files with 7 additions and 1 deletions

View File

@ -48,7 +48,13 @@
<xs:complexType>
<xs:simpleContent>
<xs:extension base="dec_hex_num">
<xs:attribute type="xs:string" name="name"/>
<xs:attribute name="name">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute type="dec_hex_num" name="index"/>
<xs:attribute type="dec_hex_num" name="vma"/>
<xs:attribute type="dec_hex_num" name="lma"/>