From f79c87659ffa97cdc03fa220cf2be7752f68c440 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 16 Oct 2019 23:19:42 -0400 Subject: [PATCH] Corrects documentation error. --- Components/AY38910/AY38910.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Components/AY38910/AY38910.hpp b/Components/AY38910/AY38910.hpp index 942e6b957..222d11c74 100644 --- a/Components/AY38910/AY38910.hpp +++ b/Components/AY38910/AY38910.hpp @@ -35,9 +35,10 @@ class PortHandler { } /*! - Requests the current input on an AY port. + Sets the current output on an AY port. - @param port_b @c true if the input being queried is Port B. @c false if it is Port A. + @param port_b @c true if the output being posted is Port B. @c false if it is Port A. + @param value the value now being output. */ virtual void set_port_output(bool port_b, uint8_t value) {} };