home *** CD-ROM | disk | FTP | other *** search
- ; Edit version 1.01
- ;**************************************************************************
- ;**************************************************************************
- ;*** ***
- ;*** Definitions for Notes used by various musical scores. ***
- ;*** ***
- ;**************************************************************************
- ;**************************************************************************
- ;
- ; File Name : NOTES.LIB
- ; Library Name : MUSICBOX.LBR
- ; Module Build File : MUSICBOX.ZEX
- ; Author : Edmund Cramp (Original definitions from Dr Dobbs).
- ; Creation Date : 28-Sep-1985
- ;
- ; Assembler Name : Z80ASM (SLR Systems)
- ; Linker Name : SLRNKP (SLR Systems)
- ;
- ; Ammendment Record
- ; *****************
- ; Name Date Details of Ammendment
- ; ---- ---- ---------------------
- ; Edmund Cramp 28-Sep-1985 Initial file creation
- ; Edmund Cramp 17-Apr-1987 Modified for ZAS/ZLINK.
- ; Edmund Cramp 19-Mar-1988 Modified for SLR assmeber/linker.
- ;
- ; Module Function
- ; ***************
- ; This file consists of the BYTE equates that define the musical notes
- ; for use in various scores. It is intended to be INCLUDED into any file
- ; that requires these definitions. These values were extracted from an old
- ; issue of Dr Dobbs.
- ;
- ;**************************************************************************
-
- N$STOP EQU 0FFH ; End of song
-
- ;+
- ; Low octave
- ;-
- N$LC EQU 0AAH ; Low C
- N$LCS EQU 0A0H ; Low C sharp
- N$LD EQU 098H
- N$LDS EQU 090H
- N$LE EQU 089H
- N$LF EQU 080H
- N$LFS EQU 07AH
- N$LG EQU 072H
- N$LGS EQU 06CH
- N$LA EQU 066H
- N$LAS EQU 060H
- N$LB EQU 05AH
-
- ;+
- ; Middle octave
- ;-
- N$MC EQU 055H ; Middle C
- N$MCS EQU 050H ; Middle C sharp
- N$MD EQU 04CH
- N$MDS EQU 048H
- N$ME EQU 045H
- N$MF EQU 040H
- N$MFS EQU 03DH
- N$MG EQU 039H
- N$MGS EQU 036H
- N$MA EQU 033H
- N$MAS EQU 030H
- N$MB EQU 02DH
-
- ;+
- ; High octave
- ;-
- N$HC EQU 02BH ; High C
- N$HCS EQU 028H ; High C sharp
- N$HD EQU 026H
- N$HDS EQU 024H
- N$HE EQU 022H
- N$HF EQU 020H
- N$HFS EQU 01EH
- N$HG EQU 01CH
- N$HGS EQU 01BH
- N$HA EQU 019H
- N$HAS EQU 018H
- N$HB EQU 016H
- N$TC EQU 015H
-
- N$REST EQU 002H ; Silence.
-
- ;**************************************************************************
- ;*** End of NOTES.LIB ***
- ;**************************************************************************