|
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 | |
|---|
| 1 | unit Base;
|
|---|
| 2 |
|
|---|
| 3 | interface
|
|---|
| 4 |
|
|---|
| 5 | uses
|
|---|
| 6 | Classes, SysUtils;
|
|---|
| 7 |
|
|---|
| 8 | type
|
|---|
| 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 |
|
|---|
| 16 | implementation
|
|---|
| 17 |
|
|---|
| 18 | end.
|
|---|
| 19 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.