source: buchla-68k/include/secops.h@ c65a0e2

Last change on this file since c65a0e2 was c65a0e2, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Added RAM files.

  • Property mode set to 100644
File size: 947 bytes
Line 
1/*
2 =============================================================================
3 secops.h -- section and note operation definitions
4 Version 5 -- 1988-07-16 -- D.N. Lynx Crowe
5 =============================================================================
6*/
7
8#define SOP_NUL 0 /* No section operation pending */
9#define SOP_GO 1 /* GoTo */
10#define SOP_BGN 2 /* Begin */
11#define SOP_END 3 /* End */
12#define SOP_MOV 4 /* Move */
13#define SOP_CPY 5 /* Copy */
14#define SOP_MRG 6 /* Merge */
15#define SOP_STC 7 /* SMPTE */
16#define SOP_DGR 8 /* Del Gr */
17#define SOP_DEV 9 /* Del Ev */
18#define SOP_RMV 10 /* Remove */
19#define SOP_GRP 11 /* ReGrp */
20
21#define NOP_NUL 0 /* No note operation pending */
22#define NOP_ACC 1 /* Begin Acc */
23#define NOP_NAT 2 /* Begin Nat */
24#define NOP_END 3 /* End Note */
25#define NOP_MVN 4 /* Move Note */
26#define NOP_MVB 5 /* Move Begin */
27#define NOP_MVE 6 /* Move End */
Note: See TracBrowser for help on using the repository browser.