From 06b00bcd57f61455c18e654110b28d73ef770211 Mon Sep 17 00:00:00 2001 From: Heath Raftery Date: Thu, 25 Nov 2021 01:40:19 +1100 Subject: [PATCH] Added key-features to config.json Fixes https://github.com/exercism/x86-64-assembly/issues/88 --- config.json | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index ea80f403..ece91aca 100644 --- a/config.json +++ b/config.json @@ -244,7 +244,38 @@ "name": "Basics" } ], - "key_features": [], + "key_features": [ + { + "icon": "widely-used", + "title": "Widely Used", + "content": "x86-64 has been the dominant ISA for personal computers since 2010." + }, + { + "icon": "fast", + "title": "Fast", + "content": "Nothing runs faster than pure assembly." + }, + { + "icon": "cross-platform", + "title": "Cross-platform", + "content": "x86-64 has been adopted by AMD, Intel and VIA." + }, + { + "icon": "stable", + "title": "Stable", + "content": "With an enormous install base, changes since introduction in 2000 have been minimal." + }, + { + "icon": "powerful", + "title": "Powerful", + "content": "x86-64 powers the most capable desktop CPUs in the world." + }, + { + "icon": "documentation", + "title": "Well documented", + "content": "Owing to its wide-spread and foundational use, every aspect of x86-64 has been exactingly documented." + } + ], "tags": [ "paradigm/imperative", "paradigm/procedural",