💾 Archived View for mirrors.apple2.org.za › archive › apple.cabi.net › FAQs.and.INFO › CPUandMore › … captured on 2023-05-24 at 23:46:39.
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
Path: news.uiowa.edu!chi-news.cic.net!nntp.coast.net!howland.reston.ans.net!news-e1a.megaweb.com!newstf01.news.aol.com!newsbf02.news.aol.com!not-for-mail From: rubywand@aol.com (RUBYWAND) Newsgroups: comp.sys.apple2.programmer Subject: Re: Mockingboard programming Date: 14 Feb 1996 10:06:34 -0500 Organization: America Online, Inc. (1-800-827-6364) Lines: 52 Sender: root@newsbf02.news.aol.com Message-ID: <4fstpq$om@newsbf02.news.aol.com> References: <victort-1302961551230001@ts-h08-15-54.ucc.su.oz.au> NNTP-Posting-Host: newsbf02.mail.aol.com X-Newsreader: AOL Offline Reader In article <victort-1302961551230001@ts-h08-15-54.ucc.su.oz.au>, victort@extro.ucc.su.oz.au (Victor Tan) writes: >can anyone supply information about how to make a mockingboard produce >sound/music? I don't have any technical info about this so as much info as >you can supply would be greatly appeciated. Specifically, how to use it >from 6502 assembly. > >Also, does anyone have any info about the different mockingboards? I see >that some Apple II programs ask which type the user has: but what's the >difference between them? MockingBoard Mini-manual (Part 1) The Sweet Micro Systems MockingBoard comes in four 'flavors': A. Sound I-- produces music tones and a variety of sound effects (1 channel output) B. Speech I-- produces speech and limited sound effects (1 channel output) C. Sound II-- 2 x Sound I on a single board (2 channels output) D. Sound/ Speech I-- Sound I + Speech I on a single board (2 channels output) MockingBoards work on Apple II's with at least 48K RAM. MB can go into any Slot. Most programs expect it to be in Slot 4; however, it is fairly common for a program which supports MB to ask you to enter the Slot #. Most for-MB products use the board for music & sound effects and will work with boards A, C, or D. Products that use MB include Ultima III, Sky Fox, Wiley Byte', Under Fire, Guitar Master, and Music Star. MB's 0.5 Watt output(s) can directly drive an 8 Ohm speaker. You can also run the output(s) to a hi-fi amplifier. MB "Sound" version boards use the General Instruments AY-3-8910 Programmable Sound Generator IC. The PSG has 3 on-chip tone oscillators (via channels A, B ,C) and a Noise Generator (NG). So, for example, the Sound II can play up to 6 notes with 2 noises at once. MB "Speech" version boards use the Votrax SC-01 Speech Synthesizer IC. The SC-01 uses 64 phoneme sounds to produce speech. MB software lets you adjust duration of each phoneme in 4 steps, create "rules" for custom sounds, and speak sentences from text in BASIC programs. All MB versions use the 6522 Versatile Interface IC to handle board I/O. Except for the Sound I board, there are circuit board points to which you can add cables to utilize I/O ports not needed for Sound or Speech. Rubywand Path: news.uiowa.edu!chi-news.cic.net!nntp.coast.net!news.kei.com!newsfeed.internetmci.com!howland.reston.ans.net!news-e1a.megaweb.com!newstf01.news.aol.com!newsbf02.news.aol.com!not-for-mail From: rubywand@aol.com (RUBYWAND) Newsgroups: comp.sys.apple2.programmer Subject: Re: Mockingboard programming Date: 14 Feb 1996 10:06:40 -0500 Organization: America Online, Inc. (1-800-827-6364) Lines: 110 Sender: root@newsbf02.news.aol.com Message-ID: <4fstq0$oo@newsbf02.news.aol.com> References: <victort-1302961551230001@ts-h08-15-54.ucc.su.oz.au> NNTP-Posting-Host: newsbf02.mail.aol.com X-Newsreader: AOL Offline Reader victort@extro.ucc.su.oz.au (Victor Tan) writes: >.... supply information about how to make a mockingboard produc sound/music? .... MockingBoard Mini-manual (Part 2): Sound Programming The user can set Tone Frequency (12 bits, 4 coarse & 8 fine)* and Amplitude (4 bits) for each channel individually. A fifth Amplitude bit lets you decide if a channel's Level will be "fixed" (use the Level value) or "variable" (i.e. follow the current Envelope pattern). You can set NG Frequency (4 bits)* but not level.