2022-02-08 09:17:22 +11:00
|
|
|
module soundbrotch
|
|
|
|
|
|
|
|
implicit none
|
2022-04-01 07:14:11 +11:00
|
|
|
! ---------------------------------------------------------
|
|
|
|
type t_sample
|
|
|
|
integer :: left
|
|
|
|
integer :: right
|
|
|
|
end type
|
|
|
|
|
|
|
|
! ---------------------------------------------------------
|
2022-02-08 09:17:22 +11:00
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
! ---------------------------------------------------------
|
|
|
|
|
|
|
|
subroutine soundbrotch_version ()
|
|
|
|
|
2022-04-01 07:14:11 +11:00
|
|
|
write(0, '(A)') "*** this is soundbrotch version alpha 666"
|
2022-02-08 09:17:22 +11:00
|
|
|
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
! ---------------------------------------------------------
|
|
|
|
|
|
|
|
end module
|
|
|
|
|