Re: Concatanate Bits Instruction?

2013-08-05 Thread Andreas F. Geissbuehler
Duffy Nightingale wrote: Working on a project that requires me to build a long bit string in storage - initialized to binary 0’s. Have a need to keep concatenating bits to this string as the process continues. The len of the bit strings to add are 4, 7, 10 and possibly others. I came up with th

Re: Concatanate Bits Instruction?

2013-08-05 Thread robin
From: "Robert A. Rosenberg" Sent: Monday, 5 August 2013 1:49 PM What you are describing is not concatenation - It is altering bits in the string. As you concatenate you need to increase the string length and add the new bits to the end. From his description, the work area is already defined,