Initial commit

- Implemented simple synth
- added instrument sine wave
- added instrument square wave
- implemented ADSR
This commit is contained in:
Hypercube
2026-08-14 22:12:17 +02:00
commit 1454566be6
3 changed files with 263 additions and 0 deletions

15
build.zig.zon Normal file
View File

@@ -0,0 +1,15 @@
.{
.name = .synth,
.version = "0.0.0",
.fingerprint = 0x241431a6b2249dd3,
.minimum_zig_version = "0.16.0",
.dependencies = .{},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
// For example...
//"LICENSE",
//"README.md",
},
}