From 9d875ab8fb539246e3aea0aae58d2c9f227c8276 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Wed, 17 Apr 2024 22:45:19 -0400 Subject: Some basic emulator graphics --- .../src/Fig/Emulator/GB/Component/Joystick.hs | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 fig-emulator-gb/src/Fig/Emulator/GB/Component/Joystick.hs (limited to 'fig-emulator-gb/src/Fig/Emulator/GB/Component/Joystick.hs') diff --git a/fig-emulator-gb/src/Fig/Emulator/GB/Component/Joystick.hs b/fig-emulator-gb/src/Fig/Emulator/GB/Component/Joystick.hs new file mode 100644 index 0000000..84785b6 --- /dev/null +++ b/fig-emulator-gb/src/Fig/Emulator/GB/Component/Joystick.hs @@ -0,0 +1,23 @@ +module Fig.Emulator.GB.Component.Joystick where + +import Fig.Prelude + +import Fig.Emulator.GB.Bus + +newtype JoystickError = JoystickError Text + deriving Show +instance Exception JoystickError +instance Pretty JoystickError where + pretty (JoystickError b) = mconcat + [ "joystick error: " + , b + ] + +compJoystick :: (MonadIO m, MonadThrow m) => Component m +compJoystick = Component + { compState = () + , compMatches = (== 0xff00) + , compUpdate = \s _ -> pure s + , compWrite = \s _ _ -> pure s + , compRead = \_ _ -> pure 0x00 + } -- cgit v1.2.3