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/Assembler.pas

    r7 r8  
    55uses
    66  Classes, SysUtils, Instructions, Cpu, Generics.Collections,
    7   Memory, Message, Parser, Int;
     7  IntMemory, Message, Parser, Int;
    88
    99type
     
    3232  public
    3333    InstructionSet: TInstructionSet;
    34     Memory: TMemory;
     34    Memory: TIntMemory;
    3535    Labels: TDictionary<string, TInt>;
    3636    LabelRefs: TList<TLabelRef>;
     
    286286  Parser.OnError := Error;
    287287  Message := TMessages.Create;
    288   Memory := TMemory.Create;
     288  Memory := TIntMemory.Create;
    289289  InstructionSet := TInstructionSet.Create;
    290290  Labels := TDictionary<string, TInt>.Create;
Note: See TracChangeset for help on using the changeset viewer.