Ignore:
Timestamp:
Apr 24, 2019, 5:04:53 PM (6 years ago)
Author:
chronos
Message:
  • Added: New instruction Convert which can convert numbers between different widths.
Location:
branches/virtualcpu4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/virtualcpu4

    • Property svn:ignore
      •  

        old new  
        55*.res
        66heaptrclog.trc
         7*.dbg
  • branches/virtualcpu4/UDisassembler.pas

    r182 r183  
    5656    Prefix := False;
    5757    Opcode := Read8;
    58     if Opcode < Integer(High(TOpcode)) then begin
     58    if Opcode <= Integer(High(TOpcode)) then begin
    5959      Prefix := OpcodeDef[TOpcode(Opcode)].Prefix;
    6060      case TOpcode(Opcode) of
Note: See TracChangeset for help on using the changeset viewer.