mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 14:50:42 +00:00
[+] Registers enumeration (only GPRs) [+] Basic class ProcessorInstruction [+] Base class InstructionOperand it's child GeneralPurposeRegister [+] Added some abstraction to DestSourceInstruction [+] Added stub for first instruction - AddWithCarry
12 lines
186 B
C#
12 lines
186 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Lost.JIT.AMD64
|
|
{
|
|
[Serializable]
|
|
public class InstructionOperand
|
|
{
|
|
}
|
|
}
|