mirror of
https://github.com/vsariola/sointu.git
synced 2025-05-27 19:00:25 -04:00
The old "native" compiler bridged version is now started with cmd/sointu-nativetrack, while the new pure-Go bytecode implemented bytecode interpreter is started with cmd/sointu-track Thus, you do not need any of the CMake / cgo stuff to run cmd/sointu-track
22 lines
382 B
Go
22 lines
382 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/vsariola/sointu/oto"
|
|
"github.com/vsariola/sointu/tracker/gioui"
|
|
"github.com/vsariola/sointu/vm/compiler/bridge"
|
|
)
|
|
|
|
func main() {
|
|
audioContext, err := oto.NewContext()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
defer audioContext.Close()
|
|
synthService := bridge.BridgeService{}
|
|
gioui.Main(audioContext, synthService)
|
|
}
|