mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-11 08:30:55 +00:00
Resolves further build warnings.
This commit is contained in:
parent
cc95e587db
commit
2ef6d4327c
@ -189,7 +189,6 @@ void WD1770::posit_event(int new_event_type) {
|
|||||||
interesting_event_mask_ &= ~new_event_type;
|
interesting_event_mask_ &= ~new_event_type;
|
||||||
}
|
}
|
||||||
|
|
||||||
Status new_status;
|
|
||||||
BEGIN_SECTION()
|
BEGIN_SECTION()
|
||||||
|
|
||||||
// Wait for a new command, branch to the appropriate handler.
|
// Wait for a new command, branch to the appropriate handler.
|
||||||
|
@ -23,11 +23,11 @@ namespace Utility {
|
|||||||
*/
|
*/
|
||||||
class CharacterMapper {
|
class CharacterMapper {
|
||||||
public:
|
public:
|
||||||
|
virtual ~CharacterMapper() {}
|
||||||
|
|
||||||
/// @returns The EndSequence-terminated sequence of keys that would cause @c character to be typed.
|
/// @returns The EndSequence-terminated sequence of keys that would cause @c character to be typed.
|
||||||
virtual uint16_t *sequence_for_character(char character) = 0;
|
virtual uint16_t *sequence_for_character(char character) = 0;
|
||||||
|
|
||||||
virtual CharacterMaper() {}
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
typedef uint16_t KeySequence[16];
|
typedef uint16_t KeySequence[16];
|
||||||
|
|
||||||
|
@ -45,6 +45,7 @@ std::shared_ptr<Storage::Disk::Track> GetFMTrackWithSectors(const std::vector<co
|
|||||||
class Encoder {
|
class Encoder {
|
||||||
public:
|
public:
|
||||||
Encoder(std::vector<bool> &target);
|
Encoder(std::vector<bool> &target);
|
||||||
|
virtual ~Encoder() {}
|
||||||
virtual void add_byte(uint8_t input) = 0;
|
virtual void add_byte(uint8_t input) = 0;
|
||||||
virtual void add_index_address_mark() = 0;
|
virtual void add_index_address_mark() = 0;
|
||||||
virtual void add_ID_address_mark() = 0;
|
virtual void add_ID_address_mark() = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user