wavetables.h 208 B

1234567891011
  1. #ifndef WAVETABLES_H
  2. #define WAVETABLES_H
  3. #include <stdint.h>
  4. #define WAVETABLES_NUM 4
  5. #define WAVETABLES_SIZE 512
  6. extern const uint8_t WAVETABLES[WAVETABLES_NUM][WAVETABLES_SIZE];
  7. #endif // WAVETABLES_H