Add Target PASCAL

This commit is contained in:
peterdell 2021-09-26 16:04:23 +02:00
parent 946423fd01
commit 11722d1939
4 changed files with 14 additions and 2 deletions

View File

@ -6,6 +6,7 @@ com.wudsn.ide.lng.Target.MOS6502_ILLEGAL=6502 with illegal opcodes
com.wudsn.ide.lng.Target.MOS65C02=65C02
com.wudsn.ide.lng.Target.MOS6502_DTV=6502 DTV
com.wudsn.ide.lng.Target.MOS65816=65816
com.wudsn.ide.lng.Target.PASCAL=Pascal
com.wudsn.ide.lng.compiler.CompilerSourceFile.name=Source Code File

View File

@ -6,6 +6,7 @@ com.wudsn.ide.lng.Target.MOS6502_ILLEGAL=6502 mit illegalen Opcodes
com.wudsn.ide.lng.Target.MOS65C02=65C02
com.wudsn.ide.lng.Target.MOS6502_DTV=6502 DTV
com.wudsn.ide.lng.Target.MOS65816=65816
com.wudsn.ide.lng.Target.PASCAL=Pascal
com.wudsn.ide.lng.compiler.CompilerSourceFile.name=Quelltext-Datei

View File

@ -56,12 +56,20 @@
<sequence>
</sequence>
</choice>
<attribute name="language" type="string" use="required">
<attribute name="language" use="required">
<annotation>
<documentation>
The technical ID of the language.
</documentation>
</annotation>
<simpleType>
<restriction base="string">
<enumeration value="ASM">
</enumeration>
<enumeration value="PAS">
</enumeration>
</restriction>
</simpleType>
</attribute>
<attribute name="id" type="string" use="required">
<annotation>
@ -166,6 +174,8 @@
</enumeration>
<enumeration value="MOS65816">
</enumeration>
<enumeration value="PASCAL">
</enumeration>
</restriction>
</simpleType>
</attribute>

View File

@ -27,5 +27,5 @@ package com.wudsn.ide.lng;
*/
public enum Target {
MOS6502, MOS6502_ILLEGAL, MOS65C02, MOS6502_DTV, MOS65816
MOS6502, MOS6502_ILLEGAL, MOS65C02, MOS6502_DTV, MOS65816, PASCAL
}