Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Sandbox Pedal Wiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Writing your first FV-1 program
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Step 1: pass-through == The smallest useful program copies input to output. <pre> RDAX ADCL, 1.0 ; ACC = left input WRAX DACL, 0.0 ; left output = ACC, then clear ACC RDAX ADCR, 1.0 ; ACC = right input WRAX DACR, 0.0 ; right output = ACC, then clear ACC </pre> Two instructions per channel. <code>RDAX</code> reads a register into the accumulator, multiplying by the coefficient on the way in. <code>WRAX</code> writes the accumulator to a register and then multiplies what remains in ACC by ''its'' coefficient. That second coefficient is the part that catches people out. <code>WRAX DACL, 0.0</code> means "write ACC to the left DAC, then zero the accumulator" β which is what you want before starting work on the other channel. Using <code>WRAX DACL, 1.0</code> would leave the value in ACC and the right channel would come out as a mix of both. Assemble this and play it through the simulator. It should sound like nothing at all, which is the correct result.
Summary:
Please note that all contributions to Sandbox Pedal Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
My wiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)