w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
Rw11UnitTM11.hpp
Go to the documentation of this file.
1// $Id: Rw11UnitTM11.hpp 1186 2019-07-12 17:49:59Z mueller $
2// SPDX-License-Identifier: GPL-3.0-or-later
3// Copyright 2015-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4//
5// Revision History:
6// Date Rev Version Comment
7// 2017-04-07 868 1.0.1 Dump(): add detail arg
8// 2015-05-17 683 1.0 Initial version
9// ---------------------------------------------------------------------------
10
11
16#ifndef included_Retro_Rw11UnitTM11
17#define included_Retro_Rw11UnitTM11 1
18
19#include "Rw11UnitTapeBase.hpp"
20
21namespace Retro {
22
23 class Rw11CntlTM11; // forw decl to avoid circular incl
24
25 class Rw11UnitTM11 : public Rw11UnitTapeBase<Rw11CntlTM11> {
26 public:
27 Rw11UnitTM11(Rw11CntlTM11* pcntl, size_t index);
29
30 void SetTmds(uint16_t tmds);
31 uint16_t Tmds() const;
32
33 virtual void Dump(std::ostream& os, int ind=0, const char* text=0,
34 int detail=0) const;
35
36 protected:
37 uint16_t fTmds;
38 };
39
40} // end namespace Retro
41
42#include "Rw11UnitTM11.ipp"
43
44#endif
void SetTmds(uint16_t tmds)
FIXME_docs.
uint16_t Tmds() const
FIXME_docs.
virtual void Dump(std::ostream &os, int ind=0, const char *text=0, int detail=0) const
FIXME_docs.
~Rw11UnitTM11()
Destructor.
Implemenation (inline) of Rw11UnitTapeBase.
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47