Yes , I used shiftout and it's working right
here is the code
==================================
; RB0 ==> clock
; RB1 ==> A
; B ==> VCC
; reset ==> VCC
INCLUDE "modedefs.bas"
symbol clock=portb.0
symbol inputA=portb.1
b0 var byte
b0=%11101010
shiftout portb.1,portb.0,1,[b0]
main:
goto main
end
==============================




Bookmarks