Frank hace 8 años
padre
commit
451c0c769e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      synth_dc.h

+ 2
- 2
synth_dc.h Ver fichero

@@ -33,8 +33,8 @@
// handling 32 bit interger overflow at every step
// without resorting to slow 64 bit math
#if defined(KINETISK)
static inline int32_t substract_32_then_divide(int32_t a, int32_t b, int32_t c) __attribute__((always_inline, unused));
static inline int32_t substract_32_then_divide(int32_t a, int32_t b, int32_t c)
static inline int32_t substract_int32_then_divide_int32(int32_t a, int32_t b, int32_t c) __attribute__((always_inline, unused));
static inline int32_t substract_int32_then_divide_int32(int32_t a, int32_t b, int32_t c)
{
int r;
r = substract_32_saturate(a,b);

Cargando…
Cancelar
Guardar