Fastmix.S now uses defines from xua.h

This commit is contained in:
Ross Owen
2023-03-09 14:56:54 +00:00
parent 2964861b70
commit c1159143ea

View File

@@ -1,8 +1,15 @@
// Copyright 2018-2023 XMOS LIMITED. // Copyright 2018-2023 XMOS LIMITED.
// This Software is subject to the terms of the XMOS Public Licence: Version 1. // This Software is subject to the terms of the XMOS Public Licence: Version 1.
#define MAX_MIX_COUNT 8 #include "xua.h"
#define MIX_INPUTS 18
#ifndef MAX_MIX_COUNT
#error
#endif
#ifndef MIX_INPUTS
#error
#endif
#define DOMIX_TOP(i) \ #define DOMIX_TOP(i) \
.cc_top doMix##i.function,doMix##i; \ .cc_top doMix##i.function,doMix##i; \