Add initial version with header/secdesc parsing.
diff --git a/sections/cper-section-generic.c b/sections/cper-section-generic.c
new file mode 100644
index 0000000..8550339
--- /dev/null
+++ b/sections/cper-section-generic.c
@@ -0,0 +1,17 @@
+/**
+ * Describes functions for converting processor-generic CPER sections from binary and JSON format
+ * into an intermediate format.
+ * 
+ * Author: Lawrence.Tang@arm.com
+ **/
+
+#include <stdio.h>
+#include "json.h"
+#include "../edk/Cper.h"
+#include "../cper-utils.h"
+
+//Converts the given processor-generic CPER section into JSON IR.
+json_object* cper_section_generic_to_ir(void* section, EFI_ERROR_SECTION_DESCRIPTOR* descriptor)
+{
+    return NULL; //todo
+}
\ No newline at end of file