openMSX
Public Member Functions | List of all members
openmsx::PrinterPortDevice Class Referenceabstract

#include <PrinterPortDevice.hh>

Inheritance diagram for openmsx::PrinterPortDevice:
Inheritance graph
[legend]
Collaboration diagram for openmsx::PrinterPortDevice:
Collaboration graph
[legend]

Public Member Functions

virtual bool getStatus (EmuTime::param time)=0
 Returns the STATUS signal: false = low = ready, true = high = not ready.
 
virtual void setStrobe (bool strobe, EmuTime::param time)=0
 Sets the strobe signal: false = low, true = high.
 
virtual void writeData (uint8_t data, EmuTime::param time)=0
 Sets the data signals.
 
std::string_view getClass () const final
 A pluggable belongs to a certain class.
 
- Public Member Functions inherited from openmsx::Pluggable
virtual ~Pluggable ()=default
 
virtual std::string_view getName () const
 Name used to identify this pluggable.
 
virtual std::string_view getDescription () const =0
 Description for this pluggable.
 
void plug (Connector &connector, EmuTime::param time)
 This method is called when this pluggable is inserted in a connector.
 
void unplug (EmuTime::param time)
 This method is called when this pluggable is removed from a connector.
 
ConnectorgetConnector () const
 Get the connector this Pluggable is plugged into.
 
bool isPluggedIn () const
 Returns true if this pluggable is currently plugged into a connector.
 

Additional Inherited Members

- Protected Member Functions inherited from openmsx::Pluggable
 Pluggable ()
 
virtual void plugHelper (Connector &newConnector, EmuTime::param time)=0
 
virtual void unplugHelper (EmuTime::param time)=0
 
void setConnector (Connector *conn)
 

Detailed Description

Definition at line 9 of file PrinterPortDevice.hh.

Member Function Documentation

◆ getClass()

std::string_view openmsx::PrinterPortDevice::getClass ( ) const
finalvirtual

A pluggable belongs to a certain class.

A pluggable only fits in connectors of the same class.

Implements openmsx::Pluggable.

Definition at line 5 of file PrinterPortDevice.cc.

◆ getStatus()

virtual bool openmsx::PrinterPortDevice::getStatus ( EmuTime::param  time)
pure virtual

◆ setStrobe()

virtual void openmsx::PrinterPortDevice::setStrobe ( bool  strobe,
EmuTime::param  time 
)
pure virtual

◆ writeData()

virtual void openmsx::PrinterPortDevice::writeData ( uint8_t  data,
EmuTime::param  time 
)
pure virtual

Sets the data signals.

Always use strobe to see whether data is valid. As an optimization, this method might not be called when the new data is the same as the previous data.

Implemented in openmsx::DummyPrinterPortDevice, openmsx::PrinterCore, openmsx::PrinterPortLogger, and openmsx::PrinterPortSimpl.

Referenced by openmsx::MSXPrinterPort::plug(), openmsx::SVIPrinterPort::plug(), openmsx::YamahaSKW01PrinterPort::plug(), and openmsx::YamahaSKW01PrinterPort::writeData().


The documentation for this class was generated from the following files: