Changeset 181 for branches/virtualcpu4/Forms
- Timestamp:
- Apr 13, 2019, 12:03:31 AM (6 years ago)
- Location:
- branches/virtualcpu4/Forms
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/virtualcpu4/Forms/UFormDisassembler.lfm
r180 r181 25 25 item 26 26 Caption = 'Opcode' 27 Width = 1 0027 Width = 150 28 28 end 29 29 item 30 30 Caption = 'Assembly' 31 Width = 4 9031 Width = 440 32 32 end> 33 33 OwnerData = True -
branches/virtualcpu4/Forms/UFormDisassembler.pas
r180 r181 7 7 uses 8 8 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ComCtrls, 9 U InstructionWriter;9 UDisassembler; 10 10 11 11 type -
branches/virtualcpu4/Forms/UFormMain.lfm
r180 r181 1 1 object FormMain: TFormMain 2 Left = 2883 Height = 9484 Top = 1965 Width = 17182 Left = 780 3 Height = 269 4 Top = 527 5 Width = 659 6 6 Caption = 'VirtCpu4' 7 ClientHeight = 9488 ClientWidth = 17187 ClientHeight = 269 8 ClientWidth = 659 9 9 DesignTimePPI = 144 10 10 OnCreate = FormCreate … … 13 13 LCLVersion = '2.0.0.4' 14 14 object ButtonStart: TButton 15 Left = 118115 Left = 229 16 16 Height = 37 17 Top = 1 017 Top = 17 18 18 Width = 113 19 19 Caption = 'Start' … … 23 23 end 24 24 object ButtonStop: TButton 25 Left = 118125 Left = 229 26 26 Height = 37 27 Top = 5827 Top = 65 28 28 Width = 113 29 29 Caption = 'Stop' … … 33 33 end 34 34 object ButtonDisassembler: TButton 35 Left = 132335 Left = 371 36 36 Height = 38 37 Top = 1 037 Top = 17 38 38 Width = 185 39 39 Caption = 'Disassembler' … … 42 42 end 43 43 object ButtonMemory: TButton 44 Left = 132344 Left = 371 45 45 Height = 38 46 Top = 5746 Top = 64 47 47 Width = 185 48 48 Caption = 'Memory' … … 51 51 end 52 52 object ButtonCpuState: TButton 53 Left = 132353 Left = 371 54 54 Height = 38 55 Top = 1 0455 Top = 111 56 56 Width = 185 57 57 Caption = 'CPU state' … … 60 60 end 61 61 object ButtonScreen: TButton 62 Left = 97662 Left = 24 63 63 Height = 38 64 Top = 964 Top = 16 65 65 Width = 185 66 66 Caption = 'Screen' … … 69 69 end 70 70 object ButtonConsole: TButton 71 Left = 97671 Left = 24 72 72 Height = 38 73 Top = 5773 Top = 64 74 74 Width = 185 75 75 Caption = 'Console' -
branches/virtualcpu4/Forms/UFormMain.pas
r180 r181 60 60 if not Assigned(FormDisassembler) then 61 61 FormDisassembler := TFormDisassembler.Create(Self); 62 FormDisassembler.Disassembler.Memory.Owner:= False; 63 FormDisassembler.Disassembler.Memory.Data := Machine.Memory; 62 FormDisassembler.Disassembler.Cpu := Machine.Cpu; 64 63 FormDisassembler.Disassembler.Process; 65 64 FormDisassembler.Show; … … 164 163 Decrement(R2); 165 164 Test(R2); 166 AddrPrefix8; Jump NotZero(LabelPrintLoop);165 AddrPrefix8; JumpRelNotZero(LabelPrintLoop); 167 166 Pop(R1); 168 167 Pop(R2);
Note:
See TracChangeset
for help on using the changeset viewer.