first commit

This commit is contained in:
Uladzimir Karpenka
2026-06-01 15:58:45 +03:00
commit 89c8a0e2b5
313 changed files with 945364 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "comm.h"
PORT
int GetWDSPVersion()
{
// WDSP Version numbers always contain exactly two digits to the right of the decimal point.
// For easy comparison with expected version values, the value returned by this function is
// version_number * 100. E.g., Version 1.14 will return 114.
const int version = 129;
return version;
}