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

n2xflash.h (204B)


      1 #pragma once
      2 
      3 #include "hardwareLib/i2cFlash.h"
      4 
      5 namespace n2x
      6 {
      7 	class Hardware;
      8 
      9 	class Flash : public hwLib::I2cFlash
     10 	{
     11 	public:
     12 		Flash(Hardware& _hardware);
     13 
     14 	private:
     15 		Hardware& m_hardware;
     16 	};
     17 }