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

lcd.h (292B)


      1 #pragma once
      2 
      3 #include "hardwareLib/lcd.h"
      4 
      5 namespace mc68k
      6 {
      7 	class Port;
      8 }
      9 
     10 namespace mqLib
     11 {
     12 	class LCD : public hwLib::LCD
     13 	{
     14 	public:
     15 		bool exec(mc68k::Port& _portGp, const mc68k::Port& _portF);
     16 
     17 	private:
     18 		uint32_t m_lastWriteCounter = 0xffffffff;
     19 		uint32_t m_lastOpState = 0;
     20 	};
     21 }