Ignore:
Timestamp:
Jul 5, 2022, 8:28:18 PM (23 months ago)
Author:
chronos
Message:
  • Modified: Improved sample code execution.
  • Added: Memory map form.
Location:
branches/UltimatOS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/UltimatOS

    • Property svn:ignore set to
      UltimatOS
      UltimatOS.lps
      UltimatOS.res
      lib
  • branches/UltimatOS/UCpu.pas

    r29 r30  
    3131    function Pop: Integer;
    3232  public
     33    ExecutedCount: Integer;
    3334    Terminated: Boolean;
    3435    Memory: TMemory;
     
    9394begin
    9495  Instruction := TInstruction(ReadByte);
     96  Inc(ExecutedCount);
    9597  case Instruction of
    9698    inNop: ;
     
    211213  IP := 0;
    212214  SP := 0;
     215  ExecutedCount := 0;
    213216end;
    214217
Note: See TracChangeset for help on using the changeset viewer.