Esempio n. 1
0
 public override void SetupMisc(PropertyList list)
 {
     //sg.Box("SetupMisc");
     list.AddItem(new propertyListItem(
         "Overflow"
     ,	propertyType.hex
     ,	"0"
     ));
     list.AddItem(new propertyListItem(
         "Negative"
     ,	propertyType.hex
     ,	"0"
     ));
     list.RefreshList();
 }
 public override void SetupMisc(PropertyList list)
 {
     propertyListItem itm = new propertyListItem("I", propertyType.hex, "0");
     itm.maxValue = 6000;
     list.AddItem(itm);
     list.RefreshList();
 }
Esempio n. 3
0
 public override void SetupRegisters(PropertyList list)
 {
     list.AddItem(new propertyListItem(
         "A"
     ,	propertyType.hex
     ,	"0"
     ));
     list.AddItem(new propertyListItem(
         "X"
     ,	propertyType.hex
     ,	"0"
     ));
     list.AddItem(new propertyListItem(
         "Y"
     ,	propertyType.hex
     ,	"0"
     ));
     list.RefreshList();
 }
 public override void SetupRegisters(PropertyList list)
 {
     for(Int32 i = 0; i < 16; i++)
         list.AddItem(new propertyListItem(
             "V" + IntToHex(i)
         ,	propertyType.hex
         ,	"0"
         ));
     list.RefreshList();
 }