

	void RunInit()
	{
		
	}
	
	void play( int32 channel, int32 tone32, int32 vol0 )
	{
		if( channel == 1 ) {
			#.OS.REMO_ModuleWrite( (int)(ID * 0x00010000 + 0x0003), vol0 * 256 + tone32 );
		}
		if( channel == 2 ) {
			#.OS.REMO_ModuleWrite( (int)(ID * 0x00010000 + 0x0004), vol0 * 256 + tone32 );
		}
	}
	//---------------------------------------------------
	//[i] function_void stop int32 int32;
	void stop( int32 channel, int32 s )
	{
		if( channel == 1 ) {
			#.OS.REMO_ModuleWrite( (int)(ID * 0x00010000 + 0x0003), 0 );
		}
		if( channel == 2 ) {
			#.OS.REMO_ModuleWrite( (int)(ID * 0x00010000 + 0x0004), 0 );
		}
	}
	//---------------------------------------------------
	uint8 switch_time( uint8 t )
	{
		return t;
	}
	//---------------------------------------------------
	//[i] function_void OS_run;
	void OS_run()
	{
		
	}
	
