diff --git a/html/includes/graphs/device/processor.inc.php b/html/includes/graphs/device/processor.inc.php
new file mode 100644
index 000000000..43e52002f
--- /dev/null
+++ b/html/includes/graphs/device/processor.inc.php
@@ -0,0 +1,13 @@
+
+
+$device = device_by_id_cache($id);
+$query = mysql_query("SELECT * FROM `processors` where `device_id` = '".$id."'");
+
+if($config['os'][$device['os']]['processor_stacked'] == 1)
+{
+ include("includes/graphs/device/processor_stack.inc.php");
+} else {
+ include("includes/graphs/device/processor_seperate.inc.php");
+}
+
+?>