Re: polyphonic-portamento another bug(!?)
Posted: Mon Jan 04, 2016 4:04 am
Finally! This works perfectly as far as i can tell.
Code: Select all
//write
mov eax,write[0];
cmp eax,0;
jz skip0;
mov eax, temp[0];
fld data[0]; fstp [eax];
skip0:
//read
mov eax, temp[0];
fld [eax]; fstp Out[0];
...
...