Cosmos/source/Cosmos.Assembler/x86/ShiftRightArithmetic.cs
fanoI ec6e231ac9 - Bugfix Shr_un does not really did a shift right unsigned
- Bugfix Shr does not really did a shift right signed
- Bigfix ShiftRighDouble was implemented as  ShiftLeftDouble
2016-08-18 20:10:10 +02:00

13 lines
287 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cosmos.Assembler.x86
{
[Cosmos.Assembler.OpCode("sar")]
public class ShiftRightArithmetic : InstructionWithDestinationAndSourceAndSize
{
}
}