|
Last change
on this file was 12, checked in by chronos, 8 months ago |
- Added: More CPU instructions.
- Added: Mouse device.
|
|
File size:
293 bytes
|
| Line | |
|---|
| 1 | unit Screen;
|
|---|
| 2 |
|
|---|
| 3 | interface
|
|---|
| 4 |
|
|---|
| 5 | uses
|
|---|
| 6 | Classes, SysUtils, Device;
|
|---|
| 7 |
|
|---|
| 8 | type
|
|---|
| 9 |
|
|---|
| 10 | { TScreen }
|
|---|
| 11 |
|
|---|
| 12 | TScreen = class(TDevice)
|
|---|
| 13 | public
|
|---|
| 14 | function GetHandlers: THandlers; override;
|
|---|
| 15 | end;
|
|---|
| 16 |
|
|---|
| 17 | implementation
|
|---|
| 18 |
|
|---|
| 19 | { TScreen }
|
|---|
| 20 |
|
|---|
| 21 | function TScreen.GetHandlers: THandlers;
|
|---|
| 22 | begin
|
|---|
| 23 | Result:=inherited GetHandlers;
|
|---|
| 24 | end;
|
|---|
| 25 |
|
|---|
| 26 | end.
|
|---|
| 27 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.