Changeset 183 for branches/virtualcpu4/UDisassembler.pas
- Timestamp:
- Apr 24, 2019, 5:04:53 PM (6 years ago)
- Location:
- branches/virtualcpu4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/virtualcpu4
- Property svn:ignore
-
old new 5 5 *.res 6 6 heaptrclog.trc 7 *.dbg
-
- Property svn:ignore
-
branches/virtualcpu4/UDisassembler.pas
r182 r183 56 56 Prefix := False; 57 57 Opcode := Read8; 58 if Opcode < Integer(High(TOpcode)) then begin58 if Opcode <= Integer(High(TOpcode)) then begin 59 59 Prefix := OpcodeDef[TOpcode(Opcode)].Prefix; 60 60 case TOpcode(Opcode) of
Note:
See TracChangeset
for help on using the changeset viewer.