How about the DCD operator? Is that what you're looking for? Is it fast enough?
DCD returns the decoded value of a bit number. It changes a bit number (0 - 31) into a binary number with only that bit set to 1. All other bits are set to 0.
Code:
B0 = DCD 2  ' Sets B0 to %00000100
/Henrik.