UpdateI finished project creation, which is based on XML templates. Users can have any number of templates. Here's a screenshot of the new project wizard:

(Click to Expand)And after clicking OK (and opening some new windows):

(Click to Expand)Here is the XML for the nostub template:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <?xml version="1.0" encoding="utf-8" ?> <ProjectTemplate Name="Nostub" Icon="nostub.png" Type="8xp" Category="83+ Assembly"> <SupportedModels> <SupportedModel>TI83P</SupportedModel> <SupportedModel>TI83PSE</SupportedModel> <SupportedModel>TI84P</SupportedModel> <SupportedModel>TI84PSE</SupportedModel> <SelectedModel>TI83P</SelectedModel> </SupportedModels> <Dependencies></Dependencies> <Files> <File Name="{Name}.asm" Open="true" Focus="true"> <Content> <![CDATA[nolist include "ti83plus.inc list
db BBh, 6Dh Start: ret]]> </Content> </File> </Files> </ProjectTemplate> |