summaryrefslogtreecommitdiff
path: root/src/arch/mips
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/mips')
-rw-r--r--src/arch/mips/instruction.c4
-rw-r--r--src/arch/mips/instruction.h4
-rw-r--r--src/arch/mips/op_add.c4
-rw-r--r--src/arch/mips/op_and.c4
-rw-r--r--src/arch/mips/op_branch.c4
-rw-r--r--src/arch/mips/op_jump.c4
-rw-r--r--src/arch/mips/op_load.c4
-rw-r--r--src/arch/mips/op_nop.c4
-rw-r--r--src/arch/mips/op_sr.c4
-rw-r--r--src/arch/mips/op_store.c4
-rw-r--r--src/arch/mips/op_sub.c4
-rw-r--r--src/arch/mips/opcodes.h4
-rw-r--r--src/arch/mips/operand.c4
-rw-r--r--src/arch/mips/operand.h4
-rw-r--r--src/arch/mips/processor.c4
-rw-r--r--src/arch/mips/processor.h4
-rw-r--r--src/arch/mips/registers.c4
-rw-r--r--src/arch/mips/registers.h4
18 files changed, 36 insertions, 36 deletions
diff --git a/src/arch/mips/instruction.c b/src/arch/mips/instruction.c
index 93c32e7..91d645f 100644
--- a/src/arch/mips/instruction.c
+++ b/src/arch/mips/instruction.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/instruction.h b/src/arch/mips/instruction.h
index ee21d89..5e47966 100644
--- a/src/arch/mips/instruction.h
+++ b/src/arch/mips/instruction.h
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/op_add.c b/src/arch/mips/op_add.c
index 1eaa1d1..35fb0a0 100644
--- a/src/arch/mips/op_add.c
+++ b/src/arch/mips/op_add.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/op_and.c b/src/arch/mips/op_and.c
index 0ba0745..1c1cdf6 100644
--- a/src/arch/mips/op_and.c
+++ b/src/arch/mips/op_and.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/op_branch.c b/src/arch/mips/op_branch.c
index 37b620d..7e7b677 100644
--- a/src/arch/mips/op_branch.c
+++ b/src/arch/mips/op_branch.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/op_jump.c b/src/arch/mips/op_jump.c
index 227e42a..b7ef9da 100644
--- a/src/arch/mips/op_jump.c
+++ b/src/arch/mips/op_jump.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/op_load.c b/src/arch/mips/op_load.c
index 9a25f0f..272078c 100644
--- a/src/arch/mips/op_load.c
+++ b/src/arch/mips/op_load.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/op_nop.c b/src/arch/mips/op_nop.c
index b97ff43..6e1c44e 100644
--- a/src/arch/mips/op_nop.c
+++ b/src/arch/mips/op_nop.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/op_sr.c b/src/arch/mips/op_sr.c
index 59e9905..b4243ce 100644
--- a/src/arch/mips/op_sr.c
+++ b/src/arch/mips/op_sr.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/op_store.c b/src/arch/mips/op_store.c
index 98ac786..81f907c 100644
--- a/src/arch/mips/op_store.c
+++ b/src/arch/mips/op_store.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/op_sub.c b/src/arch/mips/op_sub.c
index 03ad04c..b46c767 100644
--- a/src/arch/mips/op_sub.c
+++ b/src/arch/mips/op_sub.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/opcodes.h b/src/arch/mips/opcodes.h
index 296c213..3c088d3 100644
--- a/src/arch/mips/opcodes.h
+++ b/src/arch/mips/opcodes.h
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/operand.c b/src/arch/mips/operand.c
index 5eeed16..a749fb2 100644
--- a/src/arch/mips/operand.c
+++ b/src/arch/mips/operand.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/operand.h b/src/arch/mips/operand.h
index e342a93..a47891b 100644
--- a/src/arch/mips/operand.h
+++ b/src/arch/mips/operand.h
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/processor.c b/src/arch/mips/processor.c
index 15de6cc..0f1f5f5 100644
--- a/src/arch/mips/processor.c
+++ b/src/arch/mips/processor.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/processor.h b/src/arch/mips/processor.h
index 961a0ee..8b45259 100644
--- a/src/arch/mips/processor.h
+++ b/src/arch/mips/processor.h
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/registers.c b/src/arch/mips/registers.c
index 4852938..bfa0e18 100644
--- a/src/arch/mips/registers.c
+++ b/src/arch/mips/registers.c
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/src/arch/mips/registers.h b/src/arch/mips/registers.h
index 83f1b6f..7021e0a 100644
--- a/src/arch/mips/registers.h
+++ b/src/arch/mips/registers.h
@@ -6,12 +6,12 @@
*
* This file is part of Chrysalide.
*
- * OpenIDA is free software; you can redistribute it and/or modify
+ * Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * OpenIDA is distributed in the hope that it will be useful,
+ * Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.