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

n2xsync.h (233B)


      1 #pragma once
      2 
      3 #include "n2xtypes.h"
      4 
      5 #include "hardwareLib/syncUCtoDSP.h"
      6 
      7 namespace n2x
      8 {
      9 	class Sync : public hwLib::SyncUCtoDSP<g_ucFreqHz, g_samplerate, 16>
     10 	{
     11 	public:
     12 		Sync(dsp56k::DSP& _dsp) : SyncUCtoDSP(_dsp)
     13 		{
     14 		}
     15 	};
     16 }