Initial commit

This commit is contained in:
Gwen Gourevich
2021-10-27 10:34:18 +02:00
parent 43ad18eb04
commit c5f4f6ba25
199 changed files with 73169 additions and 0 deletions

25
LIB386/LIB_SAMP/GUS.INC Normal file
View File

@@ -0,0 +1,25 @@
;*--------------------------------------------------------------------------*
BUFFER_SIZE equ 1024 ; number of samples
; in half-buffer
LIST_SIZE equ 50
STRUCT_SIZE equ 40
SNAP_SIZE equ 8
SHIFT_SAMPLE equ 3 ; max number of
; samples mixed
;*--------------------------------------------------------------------------*
EXTERN SYSCALL playrate:WORD
EXTERN SYSCALL bufferhalf:DWORD
EXTERN SYSCALL buffer_dma:DWORD
EXTERN SYSCALL current_buffer:DWORD
EXTERN SYSCALL DoUpdate:WORD
EXTERN SYSCALL Critical:WORD
;*--------------------------------------------------------------------------*
UpdateBuffer PROTO SYSCALL
;*--------------------------------------------------------------------------*