Add CPU information to generic/IA32/x64 sections.
diff --git a/sections/cper-section-generic.c b/sections/cper-section-generic.c
index 04a5493..20f14c2 100644
--- a/sections/cper-section-generic.c
+++ b/sections/cper-section-generic.c
@@ -60,8 +60,8 @@
     //The level of the error.
     json_object_object_add(section_ir, "level", json_object_new_int(section_generic->Level));
 
-    //CPU version information (todo)
-    //...
+    //CPU version information.
+    json_object_object_add(section_ir, "cpuVersionInfo", json_object_new_uint64(section_generic->VersionInfo));
 
     //CPU brand string. May not exist if on ARM.
     json_object_object_add(section_ir, "cpuBrandString", json_object_new_string(section_generic->BrandString));