what have i done

This commit is contained in:
2025-10-15 15:05:23 +02:00
parent c5733897ea
commit 1015e9e18f
123 changed files with 28542 additions and 1030 deletions

View File

@ -0,0 +1,37 @@
import type { CsoundReference } from './types'
// Instrument Control:Clock Control
export const instrumentControlClockControl: CsoundReference[] = [
{
name: 'clockoff',
type: 'opcode',
category: 'Instrument Control:Clock Control',
description: 'Stops one of a number of internal clocks.',
syntax: 'clockoff(inum)',
example: '--8<-- "examples/clockoff-modern.csd"',
parameters: [
{
name: 'inum',
description: 'the number of a clock. There are 32 clocks numbered 0 through 31. All other values are mapped to clock number 32.',
type: 'initialization'
},
],
seeAlso: ['Clock Control']
},
{
name: 'clockon',
type: 'opcode',
category: 'Instrument Control:Clock Control',
description: 'Starts one of a number of internal clocks.',
syntax: 'clockon(inum)',
example: '--8<-- "examples/clockon-modern.csd"',
parameters: [
{
name: 'inum',
description: 'the number of a clock. There are 32 clocks numbered 0 through 31. All other values are mapped to clock number 32.',
type: 'initialization'
},
],
seeAlso: ['Clock Control']
},
]