diff --git a/src/BizHawk.Emulation.Cores/Libretro/Libretro.Emulator.cs b/src/BizHawk.Emulation.Cores/Libretro/Libretro.Emulator.cs
index 90ab0f0db0..3cd6faa42e 100644
--- a/src/BizHawk.Emulation.Cores/Libretro/Libretro.Emulator.cs
+++ b/src/BizHawk.Emulation.Cores/Libretro/Libretro.Emulator.cs
@@ -234,6 +234,11 @@ namespace BizHawk.Emulation.Cores.Libretro
 		private void FrameAdvancePrep(IController controller)
 		{
 			UpdateInput(controller);
+
+			if (controller.IsPressed("Reset"))
+			{
+				api.retro_reset();
+			}
 		}
 
 		private void FrameAdvancePost(bool render, bool renderSound)
@@ -320,6 +325,8 @@ namespace BizHawk.Emulation.Cores.Libretro
 					CategoryLabels[buttonName] = CAT_KEYBOARD;
 				}
 
+				BoolButtons.Add("Reset");
+
 				MakeImmutable();
 			}