source: branches/ByteArray/Forms/FormDebugger.pas

Last change on this file was 11, checked in by chronos, 2 months ago
  • Modified: Updated Common package.
  • Fixed: Wrong return address from CALL instruction.
File size: 239 bytes
Line 
1unit FormDebugger;
2
3interface
4
5uses
6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, FormEx;
7
8type
9 TFormDebugger = class(TFormEx)
10 private
11
12 public
13
14 end;
15
16var
17 FormDebugger: TFormDebugger;
18
19implementation
20
21{$R *.lfm}
22
23end.
24
Note: See TracBrowser for help on using the repository browser.