File: verbatim.mg

package info (click to toggle)
midge 0.2.41%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 556 kB
  • sloc: perl: 5,508; modula3: 1,204; lisp: 869; makefile: 36; sh: 20
file content (31 lines) | stat: -rw-r--r-- 369 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@head {
	$tempo 120
	$time_sig 4/4
}

@body {
	@channel 1 {
		$patch cello

		# note on c5
		%verbatim {
			0    # delta time
			0x90 # note on ch1 (in hex)
			60   # note c5
			127  # velocity
		}
		/l4/r # next note starts 1/4 note later

		e4 g e

		%verbatim {
			96   # delta time (1/4 note)
			0x80 # note off ch1
			60   # note c5
			32   # velocity
		}


	}

}