source: trunk/Base.pas

Last change on this file was 13, checked in by chronos, 3 weeks ago
  • Added: Call stack window.
  • Modified: Use reload pending boolean variable and reload from timer instead of Thread.Synchronize to not delay CPU execution.
File size: 346 bytes
Line 
1unit Base;
2
3interface
4
5uses
6 Classes, SysUtils;
7
8type
9 TBaseEvent = procedure of object;
10 TReadEvent = function (Address: Word): Byte of object;
11 TWriteEvent = procedure (Address: Word; Data: Byte) of object;
12 TMessageEvent = procedure (Text: string) of object;
13 TAddressEvent = procedure (Address: Word) of object;
14
15
16implementation
17
18end.
19
Note: See TracBrowser for help on using the repository browser.