Ignore:
Timestamp:
Aug 2, 2024, 9:36:35 AM (3 months ago)
Author:
chronos
Message:
  • Added: Common package.
  • Added: Memory form to show content of memory.
Location:
branches/bigint
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/bigint

    • Property svn:ignore
      •  

        old new  
        44BigIntVM.dbg
        55lib
         6heaptrclog.trc
  • branches/bigint/Machine.pas

    r2 r8  
    44
    55uses
    6   Classes, SysUtils, Cpu, Memory, Console, DeviceManager;
     6  Classes, SysUtils, Cpu, IntMemory, Console, DeviceManager;
    77
    88type
     
    1212  TMachine = class
    1313    Cpu: TCpu;
    14     Memory: TMemory;
     14    Memory: TIntMemory;
    1515    Console: TConsole;
    1616    DeviceManager: TDeviceManager;
     
    2626constructor TMachine.Create;
    2727begin
    28   Memory := TMemory.Create;
     28  Memory := TIntMemory.Create;
    2929  Memory.Size := 10000;
    3030  Console := TConsole.Create;
Note: See TracChangeset for help on using the changeset viewer.