You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
501B

  1. #pragma once
  2. #include "bogaudio.hpp"
  3. extern Model* modelMult;
  4. namespace bogaudio {
  5. struct Mult : Module {
  6. enum ParamsIds {
  7. NUM_PARAMS
  8. };
  9. enum InputsIds {
  10. INA_INPUT,
  11. INB_INPUT,
  12. NUM_INPUTS
  13. };
  14. enum OutputsIds {
  15. OUTA1_OUTPUT,
  16. OUTA2_OUTPUT,
  17. OUTA3_OUTPUT,
  18. OUTB1_OUTPUT,
  19. OUTB2_OUTPUT,
  20. OUTB3_OUTPUT,
  21. NUM_OUTPUTS
  22. };
  23. enum LightsIds {
  24. NUM_LIGHTS
  25. };
  26. Mult() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {
  27. }
  28. void step() override;
  29. };
  30. } // namespace bogaudio