summaryrefslogtreecommitdiff
path: root/src/arch/arm
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm')
-rw-r--r--src/arch/arm/encoding.h4
-rw-r--r--src/arch/arm/instruction-int.h4
-rw-r--r--src/arch/arm/instruction.c4
-rw-r--r--src/arch/arm/instruction.h4
-rw-r--r--src/arch/arm/processor.c6
-rw-r--r--src/arch/arm/processor.h4
-rw-r--r--src/arch/arm/v456/addressing.c4
-rw-r--r--src/arch/arm/v456/addressing.h4
-rw-r--r--src/arch/arm/v456/encoding.h4
-rw-r--r--src/arch/arm/v456/instruction-def.h4
-rw-r--r--src/arch/arm/v456/instruction.c4
-rw-r--r--src/arch/arm/v456/instruction.h4
-rw-r--r--src/arch/arm/v456/operands/content.c4
-rw-r--r--src/arch/arm/v456/operands/content.h4
-rw-r--r--src/arch/arm/v456/operands/register.c4
-rw-r--r--src/arch/arm/v456/operands/register.h4
-rw-r--r--src/arch/arm/v456/register.c4
-rw-r--r--src/arch/arm/v456/register.h4
18 files changed, 37 insertions, 37 deletions
diff --git a/src/arch/arm/encoding.h b/src/arch/arm/encoding.h
index 35685dd..733c6b2 100644
--- a/src/arch/arm/encoding.h
+++ b/src/arch/arm/encoding.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* encoding.h - prototypes pour le décodage des instructions ARM
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/instruction-int.h b/src/arch/arm/instruction-int.h
index b54782b..1189045 100644
--- a/src/arch/arm/instruction-int.h
+++ b/src/arch/arm/instruction-int.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* instruction-int.h - prototypes pour la définition générique interne des instructions ARM
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/instruction.c b/src/arch/arm/instruction.c
index eb67e4f..70517b3 100644
--- a/src/arch/arm/instruction.c
+++ b/src/arch/arm/instruction.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* instruction.c - gestion des instructions de la ARM
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/instruction.h b/src/arch/arm/instruction.h
index 1e03523..0725726 100644
--- a/src/arch/arm/instruction.h
+++ b/src/arch/arm/instruction.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* instruction.h - prototypes pour la gestion des instructions ARM
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/processor.c b/src/arch/arm/processor.c
index baf13ab..44dcb19 100644
--- a/src/arch/arm/processor.c
+++ b/src/arch/arm/processor.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* processor.c - manipulation du processeur ARM
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/processor.h b/src/arch/arm/processor.h
index 1386d26..d98306c 100644
--- a/src/arch/arm/processor.h
+++ b/src/arch/arm/processor.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* processor.h - prototypes pour la manipulation du processeur ARM
*
* Copyright (C) 2010 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/addressing.c b/src/arch/arm/v456/addressing.c
index 22ce11a..bb11d10 100644
--- a/src/arch/arm/v456/addressing.c
+++ b/src/arch/arm/v456/addressing.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* addressing.c - prise en compte des modes d'adressage ARM v4/5/6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/addressing.h b/src/arch/arm/v456/addressing.h
index 972508d..5e3ce3b 100644
--- a/src/arch/arm/v456/addressing.h
+++ b/src/arch/arm/v456/addressing.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* addressing.h - prototypes pour la prise en compte des modes d'adressage ARM v4/5/6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/encoding.h b/src/arch/arm/v456/encoding.h
index 0c9716c..1da11ee 100644
--- a/src/arch/arm/v456/encoding.h
+++ b/src/arch/arm/v456/encoding.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* encoding.h - prototypes pour le décodage des instructions ARM v4/v5/v6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/instruction-def.h b/src/arch/arm/v456/instruction-def.h
index 521f939..7558a86 100644
--- a/src/arch/arm/v456/instruction-def.h
+++ b/src/arch/arm/v456/instruction-def.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* instruction-def.h - définition interne des identifiants d'instructions ARM v4/5/6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/instruction.c b/src/arch/arm/v456/instruction.c
index 7f69beb..0ab85c0 100644
--- a/src/arch/arm/v456/instruction.c
+++ b/src/arch/arm/v456/instruction.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* instruction.c - gestion des instructions ARM v4/v5/v6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/instruction.h b/src/arch/arm/v456/instruction.h
index a9e6b71..34a5eb2 100644
--- a/src/arch/arm/v456/instruction.h
+++ b/src/arch/arm/v456/instruction.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* instruction.h - prototypes pour la gestion des instructions ARM v4/v5/v6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/operands/content.c b/src/arch/arm/v456/operands/content.c
index 1ffceae..105b74d 100644
--- a/src/arch/arm/v456/operands/content.c
+++ b/src/arch/arm/v456/operands/content.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* content.c - opérandes visant un registre ARM v4/5/6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/operands/content.h b/src/arch/arm/v456/operands/content.h
index 901eae0..7c3913b 100644
--- a/src/arch/arm/v456/operands/content.h
+++ b/src/arch/arm/v456/operands/content.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* content.h - prototypes pour les opérandes visant un registre ARM v4/5/6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/operands/register.c b/src/arch/arm/v456/operands/register.c
index ce51cfc..4795363 100644
--- a/src/arch/arm/v456/operands/register.c
+++ b/src/arch/arm/v456/operands/register.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* register.c - opérandes visant un registre ARM v4/5/6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/operands/register.h b/src/arch/arm/v456/operands/register.h
index 5fd19cb..b680349 100644
--- a/src/arch/arm/v456/operands/register.h
+++ b/src/arch/arm/v456/operands/register.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* register.h - prototypes pour les opérandes visant un registre ARM v4/5/6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/register.c b/src/arch/arm/v456/register.c
index 7e101a3..5e6d8bb 100644
--- a/src/arch/arm/v456/register.c
+++ b/src/arch/arm/v456/register.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* registers.c - aides auxiliaires relatives aux registres ARM v4/5/6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/arch/arm/v456/register.h b/src/arch/arm/v456/register.h
index 98454fb..0db0e5b 100644
--- a/src/arch/arm/v456/register.h
+++ b/src/arch/arm/v456/register.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* registers.h - prototypes pour les aides auxiliaires relatives aux registres ARM v4/5/6
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by