Changeset 183 for branches/virtualcpu4/UInstructionWriter.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/UInstructionWriter.pas
r182 r183 48 48 procedure Call(Addr: QWord); 49 49 procedure Return; 50 procedure Convert(Reg: TRegIndex); 50 51 procedure DataPrefix8; 51 52 procedure DataPrefix16; … … 195 196 end; 196 197 198 procedure TInstructionWriter.Convert(Reg: TRegIndex); 199 begin 200 PrefixBegin; 201 Write8(Byte(opConvert)); 202 Write8(Reg); 203 PrefixEnd; 204 end; 205 197 206 procedure TInstructionWriter.DataPrefix8; 198 207 begin
Note:
See TracChangeset
for help on using the changeset viewer.