I'm working with the ATTiny85 and need to generate a 8 bit serial string into a serial to parallel IC.
I have done this on the 8031 platform in the past but cannot figure out what commands will do the same thing in the AVR language.
So I put a binary number into a register, then check bit-0 to see if it is a one or a zero. I set the data in pin on the serial to parallel IC and generate a clock pulse to enter that bit.
And so on for all eight bits. at the end I generate a strobe pulse to output the 8 parallel bits.
The closest command I can find that I think would be useful would be the BLD command, if so I could use some help on how to implement it properly.