annotate playercode/npertab.c @ 6:d14fd386d182

Initial entry of mikmod into the CVS tree.
author darius
date Fri, 23 Jan 1998 16:05:09 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
1 // MOD format period table. Used by both the MOD and
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
2 // M15 (15-inst mod) Loaders.
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
3
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
4 #include "tdefs.h"
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
5
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
6 UWORD npertab[60] =
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
7 { // -> Tuning 0
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
8 1712,1616,1524,1440,1356,1280,1208,1140,1076,1016,960,906,
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
9 856,808,762,720,678,640,604,570,538,508,480,453,
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
10 428,404,381,360,339,320,302,285,269,254,240,226,
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
11 214,202,190,180,170,160,151,143,135,127,120,113,
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
12 107,101,95,90,85,80,75,71,67,63,60,56
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
13 };
d14fd386d182 Initial entry of mikmod into the CVS tree.
darius
parents:
diff changeset
14