diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-05-11 13:44:46 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-05-11 13:44:46 (GMT) |
commit | b24aca86f0a096730fa8df440f7493556b39ae46 (patch) | |
tree | 9489087f296eab281ac2d621f345866efb1e57f1 /plugins/arm/v7 | |
parent | f208df5b7b960f1ec89247dda2b34b5d99959201 (diff) |
Reorganized processor registrations.
Diffstat (limited to 'plugins/arm/v7')
-rw-r--r-- | plugins/arm/v7/core.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/arm/v7/core.c b/plugins/arm/v7/core.c index 06b8d23..a2ed090 100644 --- a/plugins/arm/v7/core.c +++ b/plugins/arm/v7/core.c @@ -24,6 +24,10 @@ #include "core.h" +#include <core/processors.h> +#include "processor.h" + + /****************************************************************************** * * @@ -41,7 +45,7 @@ bool init_armv7_core(void) { bool result; /* Bilan à renvoyer */ - result = true; + result = register_processor_type("armv7", "ARM v7", G_TYPE_ARMV7_PROCESSOR); return result; |