1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Fixed minor documentation error; admitted that this class didn't invent the idea of a pulse.

This commit is contained in:
Thomas Harte 2016-08-15 19:37:21 -04:00
parent e59301b416
commit 3aa40212f3
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ void CommodoreTAP::reset()
_current_pulse.type = Pulse::High;
}
CommodoreTAP::Pulse CommodoreTAP::get_next_pulse()
Tape::Pulse CommodoreTAP::get_next_pulse()
{
if(_current_pulse.type == Pulse::High)
{

View File

@ -15,7 +15,7 @@
namespace Storage {
/*!
Provides a @c Tape containing a Commodore-format tape image, which is simply a timed list of zero crossings.
Provides a @c Tape containing a Commodore-format tape image, which is simply a timed list of downward-going zero crossings.
*/
class CommodoreTAP: public Tape {
public: