Cosmos/source/Indy.IL2CPU/Assembler/x86/AddWithCarry.cs
mterwoord_cp 3838c6b11e
2008-12-07 17:34:18 +00:00

15 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86
{
[OpCode("adc")]
public class AddWithCarry : InstructionWithDestinationAndSourceAndSize
{
public void test() {
//Sourcei
}
}
}