mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
18 lines
No EOL
428 B
C#
18 lines
No EOL
428 B
C#
using System;
|
|
using System.IO;
|
|
|
|
|
|
using CPU = Indy.IL2CPU.Assembler.X86;
|
|
|
|
namespace Indy.IL2CPU.IL.X86 {
|
|
[OpCode(OpCodeEnum.Ldelem_I, true)]
|
|
public class Ldelem_I: Op {
|
|
public Ldelem_I(ILReader aReader, MethodInformation aMethodInfo)
|
|
: base(aReader, aMethodInfo) {
|
|
}
|
|
public override void DoAssemble() {
|
|
// todo: add support for different pointer sizes
|
|
Ldelem_Ref.Assemble(Assembler, 4);
|
|
}
|
|
}
|
|
} |