Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Grunwald <daniel@danielgrunwald.de>2012-03-01 02:52:04 +0400
committerDaniel Grunwald <daniel@danielgrunwald.de>2012-03-01 02:53:18 +0400
commit4b68f887b9a6a0a2b5ae268545f8d2d8ae3abe0d (patch)
tree070875c6d09878f9431355ee9e39b85eca6f2379 /Mono.Cecil.PE
parent1d446c76e9a706b9e8d3950760fe30dd09d1efed (diff)
Add support for reading the new target platforms in C# 5: ARM and AnyCPU32BitPreferred.
Diffstat (limited to 'Mono.Cecil.PE')
-rw-r--r--Mono.Cecil.PE/ImageReader.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Mono.Cecil.PE/ImageReader.cs b/Mono.Cecil.PE/ImageReader.cs
index 734b00a..9baeca5 100644
--- a/Mono.Cecil.PE/ImageReader.cs
+++ b/Mono.Cecil.PE/ImageReader.cs
@@ -118,6 +118,8 @@ namespace Mono.Cecil.PE {
return TargetArchitecture.AMD64;
case 0x0200:
return TargetArchitecture.IA64;
+ case 0x01c4:
+ return TargetArchitecture.ARMv7;
}
throw new NotSupportedException ();