mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
15 lines
370 B
C#
15 lines
370 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.IL;
|
|
|
|
namespace IL2CPU {
|
|
class OpCodeMap {
|
|
protected List<int, Op> mMap = new List<int, Op>();
|
|
|
|
void OpCodeMap() {
|
|
//Use reflection and scan Indy.ILCPU.IL for all descendants of Op and populate mMap
|
|
}
|
|
}
|
|
}
|