Example #1
0
 public InstructionField(string name, int size, CpuFieldType type)
 {
     Name = name;
     Size = size;
     Type = type;
     InstructionFieldManager.Instance.AddField(this);
 }
        public CpuConfigurationBuilder AddInstructionField(string name, int size, CpuFieldType type)
        {
            var _ = new InstructionField(name, size, type);

            return(this);
        }