Changeset 223 for branches/CpuSingleSize/Forms/UFormConsole.pas
- Timestamp:
- Jul 12, 2022, 10:43:40 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CpuSingleSize/Forms/UFormConsole.pas
r220 r223 1 1 unit UFormConsole; 2 3 {$mode delphi}4 2 5 3 interface … … 24 22 procedure SetDevice(AValue: TDevice); override; 25 23 public 26 Console: T Console;24 Console: TDeviceConsole; 27 25 end; 28 26 … … 63 61 procedure TFormConsole.SetDevice(AValue: TDevice); 64 62 begin 65 if AValue is T Console then66 Console := T Console(AValue);63 if AValue is TDeviceConsole then 64 Console := TDeviceConsole(AValue); 67 65 end; 68 66 … … 75 73 Console.Lock.Release; 76 74 end; 77 Console. Cpu.Interrupt(Console.InterruptVector);75 Console.PulseInterrupt; 78 76 end; 79 77
Note:
See TracChangeset
for help on using the changeset viewer.