diff --git a/src/state.rs b/src/state.rs
index c6b098c7a488056e046ed15b4615f21c405be213..dc9146a47086e7c3c4d9427926988cf68ddaa55d 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -34,8 +34,10 @@ impl BeesState {
         let title_l: String = format!("{:width$}", "Title", width = column_length);
         let version_l: String = format!("{:width$}", "Version", width = column_length);
         let model_l: String = format!("{:width$}", "Model", width = column_length);
+        let ram_l: String = format!("{:width$}", "RAM", width = column_length);
+        let vram_l: String = format!("{:width$}", "VRAM", width = column_length);
         format!(
-            "{}  {}\n{}  {}\n{}  {}.{}\n{}  {}\n",
+            "{}  {}\n{}  {}\n{}  {}.{}\n{}  {}\n{}  {}\n{}  {}\n",
             emulator_l,
             self.name.name,
             title_l,
@@ -45,6 +47,10 @@ impl BeesState {
             self.core.minor,
             model_l,
             self.core.model,
+            ram_l,
+            self.core.ram.size,
+            vram_l,
+            self.core.vram.size,
         )
     }