Thread
:
Splitting Bytes in C
View Single Post
05-26-2004, 02:44 PM
#
4
(
permalink
)
joe_bruin
LOAD "*",8,1
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
Code:
unsigned char v, control, channel; v = 0xB0; control = (v >> 4); channel = (v & 0xf);
joe_bruin
View Public Profile
Find More Posts by joe_bruin