Hi Charles,
macro SplitBytes4(w,b1,b2,b3,b4)
b1=w and 0xff
b2=w>>8 and 0xff
b3=w>>16 and 0xff
b4=w>>24 and 0xff
end macro
sys w=0x80642010, byte b1,b2,b3,b4
mov eax,w
and eax,255
mov b1,eax
mov eax,w
shr eax,8
mov b2,al
mov eax,w
shr eax,16
mov b3,al
mov eax,w
shr eax,24
mov b4,al
print b1 + " " + b2 + " " + b3 + " " + b4
'Why 0xFF ?