private void Given_Dialog_32Bit()
 {
     this.dlg = new JumpTableDialog()
     {
         Program = program,
         Instruction = new FakeInstruction(Operation.Jump) { Address = Address.Ptr32(0x1000) }
     };
 }
 private void Given_Dialog_32Bit()
 {
     this.dlg = new JumpTableDialog()
     {
         Program     = program,
         Instruction = new FakeInstruction(Mnemonic.Jump)
         {
             Address = Address.Ptr32(0x1000)
         }
     };
 }
Beispiel #3
0
 public void Attach(JumpTableDialog dlg)
 {
     this.dlg = dlg;
     dlg.IsIndirectTable.CheckedChanged += IsIndirectTable_CheckedChanged;
     dlg.Load += Dlg_Load;
     dlg.FormClosing += Dlg_FormClosing;
     dlg.EntryCount.ValueChanged += EntryCount_ValueChanged;
     dlg.Entries.SelectedIndexChanged += Entries_SelectedIndexChanged;
     dlg.FarAddress.CheckedChanged += FarAddress_CheckedChanged;
     dlg.RelativeAddress.CheckedChanged += RelativeAddress_CheckedChanged;
     dlg.SegmentOffsets.CheckedChanged += Offsets_CheckedChanged;
 }
 public void Setup()
 {
     dlg = null;
 }
 public void Setup()
 {
     dlg = null;
 }