gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

mqLcdBase.h (239B)


      1 #pragma once
      2 
      3 #include <array>
      4 #include <cstdint>
      5 
      6 class MqLcdBase
      7 {
      8 public:
      9 	virtual ~MqLcdBase() = default;
     10 
     11 	virtual void setText(const std::array<uint8_t, 40>& _text) = 0;
     12 	virtual void setCgRam(std::array<uint8_t, 64>& _data) = 0;
     13 };