Search found 3 matches

by igorrr
Sat Sep 28, 2019 2:48 am
Forum: FV-1 software questions
Topic: Alternate Assembler
Replies: 6
Views: 8609

Re: Alternate Assembler

This gain of 1000

log 1.0,0.625
exp 1.0,0.0

is not working with it, but works as intended with the spin compiler.
by igorrr
Mon Nov 05, 2018 9:27 am
Forum: Algorithm development
Topic: Can not interpolate from two delay blocks
Replies: 3
Views: 3362

Re: Can not interpolate from two delay blocks

Many thanks Frank!
What is the best way to increment the address by 1 sample?
I added this line
“sof 1.0001,0”
making it
or right*256
rdax time, 1.0
sof 1.0001,0
wrax addr_ptr,0
which works, but looks like there is a better way to do it.
by igorrr
Sun Nov 04, 2018 7:20 am
Forum: Algorithm development
Topic: Can not interpolate from two delay blocks
Replies: 3
Views: 3362

Can not interpolate from two delay blocks

Hello, I try to do interpolated delay reads from two delay blocks. But reading from the second block is not one sample delayed as it should be, thus interpolation can not be done for that block. Here is the test code: mem left 5000 mem right 5000 equ time reg1 sof 0,0.01 wrax time, 0 ; Save it rdax ...