《電子技術應用》
您所在的位置:首頁 > 嵌入式技術 > 解決方案 > PIC讀寫93C46程序

PIC讀寫93C46程序

2009-01-16
關鍵詞: PIC 源代碼

PIC讀寫93C46程序

;********************************************************************
;*                      PICALC Directives Section                   *
;********************************************************************

 SUBTITL "93C46 3 WIRE INTERFACE ROUTINE"
 LIST     P=16C54,N=40,C=132


;********************************************************************
;*                      Register Assignments                        *
;********************************************************************

indir   equ     0x00            ;Use this register as source/destination for
    ;indirect addressing.
pc      equ     0x02            ;PIC Program Counter.
status  equ     0x03            ;PIC Status Register.
fsr     equ     0x04            ;File Select Register.
serial  equ     0x05            ;Port used for 93C46 control.  Since Port A
    ;is 4 bits wide, we'll use all of Port A.

    ;The following three registers must be
    ;located consecutively in memory.
cmd     equ     0x10            ;This register contains the 2 bit 93C46
    ;command is the upper 2 bit positions and
    ;memory address in the lower 6.
highb   equ     0x11            ;Used in read/write routines to store the
    ;upper byte of a 16 bit 93C46 data word.
lowb    equ     0x12            ;Used in read/write routines to store the
    ;lower byte of a 16 bit 93C46 data word.

cnthi   equ     0x13            ;Used as the upper byte of a sixteen bit loop
    ;counter in RDYCHK routine.
cnt     equ     0x14            ;Used as the lower byte of a sixteen bit loop
    ;counter in RDYCHK routine, and elsewhere as
    ;an eight bit counter.

;********************************************************************
;*                      Bit Assignments                             *
;********************************************************************

carry   equ     0               ;Carry Flag of Status Register.
zflag   equ     2               ;Zero Flag of Status Register.

;For the 3 wire interface, connect the din and dout to the same
;i/o line of the PIC16C5X.
cs      equ     0               ;Port pin tied to CS on 93C46.
din     equ     1               ;Port pin tied to DI on 93C46.
dout    equ     1               ;Port pin tied to DO on 93C46.
clock   equ     2               ;Port pin tied to CLK on 93C46.

;********************************************************************
;*                      General Assignments                         *
;********************************************************************

no_err  equ     0               ;
error   equ     1               ;
tries   equ     0x04            ;After issuing a WRITE, ERASE, ERAL, or WRAL
    ;command, the approximate number of machine
    ;cycles X 256 to wait for the RDY status.
    ;This value must be adjusted for operating
    ;frequencies other than 4 MHz.

read    equ     0x80            ;93C46 Read command.
write   equ     0x40            ;93C46 Write command.
erase   equ     0xC0            ;93C46 Erase command.
ewen    equ     0x30            ;93C46 Erase/Write Enable command.
ewds    equ     0x00            ;93C46 Erase/Write Disable command.
eral    equ     0x20            ;92CXX Erase All command.
wral    equ     0x10            ;92CXX Write All command.

;********************************************************************
;*                      Macro Definitions                           *
;********************************************************************

sel     MACRO                   ;Selects the 93C46 device.
 bsf     serial,cs       ;Chip Select (CS) = '1' to select the device.
 ENDM

dsel    MACRO                   ;De-select the 93C46 device.
 bcf     serial,cs       ;Chip Select (CS) = '0' to de-select the
    ;device.
 ENDM

strtbt  MACRO                   ;Issue the Start Bit to the 93C46.
 bsf     serial,din      ;Start Bit = '1'.
 clkit                   ;Clock it out.
 ENDM

clkit   MACRO                   ;Clocks a serial data bit into or out of the
    ;93C46 device.
 bsf     serial,clock    ;Clock (CLK) = '1'.

 nop                     ;Adjust the number of nop instructions
    ;between the assertion and de-assertion of
    ;CLK in proportion to the PIC operating
    ;frequency.  Refer to the 93C46 data for the
    ;minimum CLK period.
   
 bcf     serial,clock    ;Clock (CLK) = '0'.
 ENDM

;********************************************************************
;*                      Power-On/Reset Entry Point                  *
;********************************************************************

reset_  org     0x1FF
 goto    main

;********************************************************************
;*                      93C46 Routines                              *
;********************************************************************
 org     0x000           ;Locate all subroutines in the lower half of
    ;a Program Memory Page.

;********************************************************************
;*                      DOUT8                                       *
;********************************************************************
    ;Dout8 will output 8 bits of data to the
    ;93C46.  Before calling this routine, the FSR
    ;must point to the byte being transmitted.

dout8   movlw   0x08            ;Initialize loop counter.
 movwf   cnt             ;

d_o_8   bcf     serial,din      ;Assume that the bit to be transfered is a
    ;'0'.  Hence, de-assert DI.
 rlf     indir           ;Rotate the actual bit to be transferred into
    ;the carry bit.
 btfsc   status,carry    ;Test the carry, if our assumption was
    ;correct, skip the next instruction.
 bsf     serial,din      ;No, actual bit was a '1'.  Assert DI.
 clkit                   ;Clock the 93C46.
 decfsz  cnt             ;Repeat until cnt = 0.
 goto    d_o_8           ;Cnt still > 0.
 rlf     indir           ;Restore register to its original condition.
 retlw   no_err          ;Exit with good status.

;********************************************************************
;*                      DIN8                                        *
;********************************************************************
    ;Din8 will input 8 bits of data from the
    ;93C46.  Before calling this routine, the FSR
    ;must point to the register being used to
    ;hold the incomming data.
din8    movlw   0x08            ;Initialize loop counter.
 movwf   cnt             ;
;for the 3 wire interface the direction of the i/o line connected to
;din and dout has to converted from an output to an input.
 movlw   b'00000010'     ;convert RA1 to an input
 tris    serial          ;       /

d_i_8   clkit                   ;Clock a bit out of the 93C46.
 rlf     indir           ;Make room for the incomming bit in the
    ;destination register.
 bcf     indir,0         ;Assume that the incomming bit is a '0' and
    ;clear the LSB of the destination register.
 btfsc   serial,dout     ;Test the incomming bit, if our assumption
    ;was correct, skip the next instruction.
 bsf     indir,0         ;No, actual bit is a '1'.  Set the LSB of the
    ;destination register.
 decfsz  cnt             ;Repeat until cnt = 0.
 goto    d_i_8           ;Cnt still > 0
;for a 3 wire interface, convert the RA1 line back to an output
 movlw   0               ;make RA1 to an output
 tris    serial          ;       /
 retlw   no_err          ;Exit with good status.

;********************************************************************
;*                      RDYCHK                                      *
;********************************************************************
    ;Rdychk will read the 93C46 READY/BUSY status
    ;and wait for RDY status within the alloted
    ;number of processor cycles.  If RDY status
    ;is not present after this set period, the
    ;routine will return with an error status.

rdychk  movlw   tries           ;Initialize time-out counter.
 movwf   cnthi           ;
 clrf    cnt             ;
;for a 3 wire interface, make the RA1 line an input
 movlw   b'00000010'     ;
 tris    serial
 dsel                    ;De-select the 93C46.

;       nop                     ;NOTE:  Check the 93C46 data sheet for
    ;minimum CS low time.  Depending upon
    ;processor frequency, a nop(s) may be
    ;between the assertion and de-assertion of
    ;Chip Select.

 sel                     ;Re-select the 93C46.
notrdy  btfsc   serial,dout     ;If DO is a '0', 93C46 has yet to completed
    ;the last operation (still busy).
 goto    no_error        ;Otherwise RDY status is present within the
    ;alloted time, and return with good status.
 decfsz  cnt             ;No, not yet ready.  Decrement the LSB of our
    ;16 bit timer and check for expiration.
 goto    notrdy          ;Still some time left.  Try again.
 decfsz  cnthi           ;Least significant byte expired - decrement
    ;and check for expiration of the MSB.
 goto    notrdy          ;Still some time left.  Try again.
;for a 3 wire interface, convert RA1 line back to an ouput
 movlw   0               ;convert RA1 to an output
 tris    serial          ;       /
 retlw   error           ;RDY status was not present in the alloted
    ;time, return with error status.
no_error
;for a 3 wire interface, convert RA1 line back to an ouput
 movlw   0               ;convert RA1 to an output
 tris    serial          ;       /
 retlw   no_err


;********************************************************************
;*                      SEE                                         *
;********************************************************************

    ;See will control the entire operation of a
    ;93C46 device.  Prior to calling the routine,
    ;load a valid command/memory address into
    ;location cmd, and for WRITE or WRAL
    ;commands, load registers highb and lowb with
    ;16 bits of write data.  Upon exit, the W
    ;register will contain the completion status.
    ;Only 93C46 instructions which require a
    ;status check can return with an error as the
    ;completion status.  The values that denote
    ;the completion status are defined as
    ;variables 'error' and 'no_err' in the
    ;general assignments section.

see     movlw   cmd             ;Load W with the location of the cmd
    ;register.
 movwf   fsr             ;Transfer that information into the File
    ;Select Register.  The fsr now points to
    ;location cmd.
 sel                     ;Select the 93C46.
 strtbt                  ;Send a start bit.
 call dout8              ;Transmit the 2 bit command and six bit
    ;address.
 btfsc   cmd,6           ;Check for a WRITE or ERASE command.
 goto    see2            ;Yes, parse the command further.
 btfsc   cmd,7           ;Check for a READ command.
 goto    read_           ;Yes, process READ command.
 btfsc   cmd,5           ;Check for a EWEN or ERAL command.
 goto    see3            ;Yes, parse the command further.
 btfsc   cmd,4           ;Check for a WRAL command.
 goto    write_          ;Yes, process WRITE/WRAL command.

exit_   dsel                    ;No further processing required; 93C46
    ;command completed.
 retlw   no_err          ;Return with good completion status.

see2    btfss   cmd,7           ;Check for a ERASE command.
 goto    write_          ;No, process WRITE command.
exit2_  call    rdychk          ;ERASE command requires a status check.
 dsel                    ;De-select the 93C46.
 addwf   pc              ;Compute completion status from results of
    ;status check.
 retlw   no_err          ;Return with good completion status.
 retlw   error           ;Return with bad completion status.

see3    btfsc   cmd,4           ;Check for a EWEN command.
 goto    exit_           ;Yes, no further processing required, exit
    ;now.
 goto    exit2_          ;No, ERAL command which requires a status
    ;check.

read_   incf    fsr             ;Increment the File Select Register to point
    ;to the register receiving the upper byte of
    ;the incomming 93C46 data word.
 call    din8            ;Input the upper byte.
 incf    fsr             ;Increment the File Select Register to point
    ;to the register receiving the lower byte.
 call    din8            ;Input 8 more bits.
 goto    exit_           ;No further processing required, exit now.

write_  incf    fsr             ;Increment the File Select Register to point
    ;to the upper byte of the 16 bit 93C46 data
    ;word to be transmitted.
 call    dout8           ;Output that byte.
 incf    fsr             ;Increment the File Select Register to point
    ;to the lower byte.
 call    dout8           ;Output the lower byte of the 16 bit 93C46
    ;data word.
 goto    exit2_          ;Exit with a status check.

;********************************************************************
;*                      Test Program                                *
;********************************************************************
 main                    ;We've include a sample program to exercise
    ;the PIC to 93C46 interface using a simple
    ;erase, write and varify routine.
 
 clrf    serial          ;Clear the port tied to the 93C46 device.
 movlw   b'11110100'     ;Intialize the data direction register for
 tris    serial          ;that port.
 
 movlw   ewen            ;Load W with the Erase/Write Enable command.
 movwf   cmd             ;Transfer W into cmd register.
 call    see             ;Enable the 93C46 device.

 movlw   eral            ;Load W with the Erase All command.
 movwf   cmd             ;Transfer W into cmd register.
 call    see             ;Erase the 93C46.
 xorlw   error           ;Check completion status.
 btfsc   status, zflag   ;Test for error condition.
 goto    errloop         ;Yes, bad completion status, error-out.

    ;Write loop:
loopcnt equ     0x1F            ;Define an unused location for our test
    ;program loop counter.
tstptrn equ     0xAA            ;Define the test pattern to be written.

 movlw   .64             ;Initialize that counter.
 movwf   loopcnt         ;
 movlw   write           ;Load W with the Write command.
 movwf   cmd             ;Transfer W into cmd register.
 movlw   tstptrn         ;Intialize the 93C46 data registers with
    ;write data.
 movwf   highb           ;
 movwf   lowb            ;
test1   call    see             ;Write data word into 93C46 device.
 xorlw   error           ;Check completion status.
 btfsc   status,zflag    ;Test for error condition.
 goto    errloop         ;Yes, bad completion status, error-out.
 incf    cmd             ;No, increment the 6 bit memory address
    ;field.
 decfsz  loopcnt         ;Have we written all 64 locations?
 goto    test1           ;No, write another location.

    ;Read loop:

 movlw   .64             ;Initialize loop counter.
 movwf   loopcnt         ;
 movlw   read            ;Load W with the Read command.
 movwf   cmd             ;Transfer W into cmd register.
test2   call    see             ;Read addressed data word from 93C46 device.
 movlw   tstptrn         ;Load W with the pattern written.
 subwf   highb,0         ;Verify the data read against what was
    ;written.
 btfss   status,zflag    ;Same?
 goto    errloop         ;No, error-out.
 movlw   tstptrn         ;Repeat with the lower byte read.
 subwf   lowb,0          ;
 btfss   status,zflag    ;Same?
 goto    errloop         ;No, error-out.
 incf    cmd             ;Yes, both byte correct, increment the 6 bit
    ;memory address field.
 decfsz  loopcnt         ;Have we read all 64 locations?
 goto    test2           ;No, read another location.

allok   goto    allok           ;Home safe!

errloop goto    errloop         ;Bad news!

 END                     ;Thats all folks!

本站內容除特別聲明的原創文章之外,轉載內容只為傳遞更多信息,并不代表本網站贊同其觀點。轉載的所有的文章、圖片、音/視頻文件等資料的版權歸版權所有權人所有。本站采用的非本站原創文章及圖片等內容無法一一聯系確認版權者。如涉及作品內容、版權和其它問題,請及時通過電子郵件或電話通知我們,以便迅速采取適當措施,避免給雙方造成不必要的經濟損失。聯系電話:010-82306118;郵箱:aet@chinaaet.com。
热re99久久精品国产66热_欧美小视频在线观看_日韩成人激情影院_庆余年2免费日韩剧观看大牛_91久久久久久国产精品_国产原创欧美精品_美女999久久久精品视频_欧美大成色www永久网站婷_国产色婷婷国产综合在线理论片a_国产精品电影在线观看_日韩精品视频在线观看网址_97在线观看免费_性欧美亚洲xxxx乳在线观看_久久精品美女视频网站_777国产偷窥盗摄精品视频_在线日韩第一页
  • <strike id="ygamy"></strike>
  • 
    
      • <del id="ygamy"></del>
        <tfoot id="ygamy"></tfoot>
          <strike id="ygamy"></strike>
          久久久91精品国产| 亚洲手机视频| 欧美一区中文字幕| 久久免费一区| 伊人久久亚洲美女图片| 久久成人这里只有精品| 美女亚洲精品| 亚洲精品乱码久久久久久久久| 国产一区二区高清| 亚洲裸体视频| 欧美大片在线看免费观看| 激情综合亚洲| 狠狠久久五月精品中文字幕| 国产精品永久在线| 亚洲福利小视频| 亚洲乱码日产精品bd| 麻豆精品视频在线观看视频| 欧美久久九九| 久久午夜激情| 欧美性大战久久久久久久蜜臀| 午夜久久电影网| 亚洲在线成人| 亚洲一区二区精品在线| 国产精品极品美女粉嫩高清在线| 亚洲第一天堂av| 欧美一区二区性| 国产精品亚洲产品| 国产精品国产三级国产aⅴ无密码| 久久综合伊人77777麻豆| 亚洲国产导航| 国产精品日韩一区二区| 亚洲男人第一网站| 午夜亚洲福利| 欧美在线亚洲综合一区| 亚洲福利av| 国产永久精品大片wwwapp| 免播放器亚洲| 欧美一区免费视频| 久久视频一区二区| 先锋a资源在线看亚洲| 久久一区二区三区超碰国产精品| 国产精品h在线观看| 久久一日本道色综合久久| 亚洲国产成人久久综合一区| 欧美日韩福利视频| 欧美一级理论片| 亚洲国产精品传媒在线观看| 国产精品mv在线观看| 免费成人黄色| 亚洲欧美成人在线| 国产精品乱人伦中文| 国产精品一区二区三区四区五区| 亚洲国产精品久久| 玖玖玖国产精品| 欧美黑人多人双交| 国产精品手机视频| 亚洲欧美卡通另类91av| 国产精品久久久久国产a级| 亚洲精品一二三区| 在线一区二区三区四区五区| 一区二区三区精品视频在线观看| 亚洲精品亚洲人成人网| 亚洲男人第一网站| 欧美午夜一区二区| 久久久www成人免费毛片麻豆| 久久亚洲欧美| 亚洲国产精品一区二区第四页av| 欧美v日韩v国产v| 狠狠色丁香婷婷综合影院| 国产美女精品人人做人人爽| 国产精品自拍视频| 午夜一区不卡| 校园春色国产精品| 欧美日韩免费一区二区三区视频| 国产在线不卡精品| 韩国在线视频一区| 国内成人精品一区| 欧美精品v日韩精品v国产精品| 欧美一区深夜视频| 国产三级精品三级| 免费成人你懂的| 欧美成人性生活| 欧美成人午夜剧场免费观看| 久久一区二区三区四区| 黄色成人免费观看| 亚洲国产视频a| 国产午夜一区二区三区| 女女同性女同一区二区三区91| 影音先锋亚洲视频| 国产美女精品在线| 国产一区二区三区高清| 欧美午夜激情在线| 日韩视频一区二区在线观看| 亚洲精品综合久久中文字幕| 欧美视频免费在线观看| 欧美主播一区二区三区| 日韩亚洲精品视频| 欧美午夜精品伦理| 国内精品99| 久久gogo国模啪啪人体图| 国产日韩av高清| 性刺激综合网| 欧美制服第一页| 欧美日韩成人网| 免费成人黄色av| 免费亚洲电影在线| 亚洲免费婷婷| 在线观看精品一区| 欧美视频在线观看一区二区| 亚洲国产欧美日韩另类综合| 亚洲欧美国产va在线影院| 亚洲国产精品一区二区第一页| 久久久免费av| 一区二区三区在线视频观看| 亚洲电影免费观看高清完整版在线观看| 午夜视频在线观看一区| 欧美日韩亚洲在线| 欧美日韩成人在线| 亚洲精品乱码久久久久久蜜桃91| 国产精品theporn88| 亚洲精品国产视频| 狠狠爱www人成狠狠爱综合网| 亚洲视频1区| 欧美大片在线观看一区| 在线不卡免费欧美| 久久久av网站| 在线欧美日韩| 国产精品成人一区| 国产日韩亚洲欧美| 欧美成人高清| 99国产成+人+综合+亚洲欧美| 欧美freesex交免费视频| 欧美成人在线网站| 一区免费观看视频| 一区二区三区我不卡| 久久成人久久爱| 一区二区三区导航| 欧美色欧美亚洲另类七区| 狠狠色综合色综合网络| 亚洲电影免费观看高清完整版在线| 久久www免费人成看片高清| 亚洲欧美999| 国产一区二区三区久久悠悠色av| 欧美一级二区| 日韩五码在线| 国产精品久久久久久久浪潮网站| 久久综合色播五月| 久久天天躁狠狠躁夜夜av| 一区二区三区四区五区精品视频| 国产精品私人影院| 欧美1级日本1级| 亚洲免费观看高清完整版在线观看| 在线视频中文亚洲| 亚洲人成在线免费观看| 亚洲精品视频免费观看| 夜夜嗨av一区二区三区中文字幕| 免费试看一区| 欧美了一区在线观看| 亚洲国产成人精品久久久国产成人一区| 欧美午夜精品一区二区三区| 这里只有精品丝袜| 国产精品美女久久久久久2018| 裸体素人女欧美日韩| 在线视频日本亚洲性| 日韩亚洲成人av在线| 一区二区三区自拍| 亚洲小说欧美另类社区| 91久久精品国产| 欧美天天在线| 国自产拍偷拍福利精品免费一| 亚洲福利在线看| 国产一区在线观看视频| 夜夜爽www精品| 国产麻豆精品theporn| 一本久久青青| 伊大人香蕉综合8在线视| 最新国产乱人伦偷精品免费网站| 国精品一区二区| 欧美亚洲免费| 美女网站在线免费欧美精品| 欧美成人一区二区三区在线观看| 国产一区二区按摩在线观看| 免费成人高清在线视频| 亚洲视频自拍偷拍| 欧美精品在线网站| 欧美日韩在线精品一区二区三区| 国产一区二区三区在线免费观看| 亚洲免费在线观看| 国产精品毛片在线看| 久久国产精品久久久| 91久久精品一区二区三区| 久久久久久国产精品一区| 欧美日韩一区二区视频在线| 性做久久久久久久久| 欧美午夜免费| 欧美xx视频| 欧美新色视频| 在线亚洲免费视频| 亚洲成人原创| 日韩一级黄色大片| 亚洲欧美日韩直播| 在线国产精品一区| 欧美国产一区二区| 欧美另类99xxxxx| 久久中文欧美| 亚洲精品一区二区三| 欧美v日韩v国产v| 欧美一区二区三区播放老司机| 狠狠色香婷婷久久亚洲精品| 国产精品久久久久久久久免费樱桃| 国产精品久久久久久一区二区三区| 国产午夜精品久久| 国产在线精品一区二区中文| 亚洲一级片在线观看| 亚洲人成7777| 亚洲国产成人久久| 亚洲狼人综合| 六月婷婷一区| 国产一区二区三区电影在线观看| 国产精品九九久久久久久久| 欧美视频日韩视频在线观看| 亚洲久久视频| 欧美私人网站| 欧美三级日本三级少妇99| 91久久国产综合久久| 国产精品福利av| 韩国福利一区| 亚洲一区亚洲| 欧美日韩国产黄| 影音先锋久久资源网| 欧美日韩成人在线播放| 欧美精品1区2区3区| 美女福利精品视频| 国产精品久久久久永久免费观看| 国产乱码精品一区二区三区不卡| 日韩午夜视频在线观看| 欧美国产高清| 欧美日韩三级一区二区| 欧美日韩国产色视频| 亚洲色图制服丝袜| 欧美精品在线网站| 久久免费视频一区| 欧美国产高潮xxxx1819| 欧美色综合天天久久综合精品| 欧美不卡高清| 99精品国产在热久久婷婷| 欧美午夜三级| 国产精品人人做人人爽人人添| 销魂美女一区二区三区视频在线| 亚洲伊人伊色伊影伊综合网| 永久免费精品影视网站| 狠狠入ady亚洲精品经典电影| 欧美视频亚洲视频| 欧美国产欧美亚洲国产日韩mv天天看完整| 亚洲欧美日韩精品久久亚洲区| 一本色道久久99精品综合| 久久综合九色99| 狠狠色狠色综合曰曰| 国产精品天美传媒入口| 国产精品久久久久一区二区| 一区二区三区日韩精品视频| 一区二区三区四区五区视频| 久久久久久久欧美精品| 国产精品区一区| 欧美日韩亚洲国产精品| 亚洲国产一区二区三区在线播| 欧美三级日韩三级国产三级| 欧美日韩综合一区| 裸体丰满少妇做受久久99精品| 欧美激情国产日韩| 欧美成人资源网| 久久久久成人精品免费播放动漫| 欧美一区二区三区男人的天堂| 亚洲国产一区二区三区青草影视| 国产一二精品视频| 欧美福利影院| 亚洲一区二区三区欧美| 欧美精品一区在线发布| 欧美三区在线视频| 亚洲美女视频在线免费观看| 国产综合精品| 国产日韩欧美一区二区三区在线观看| 国产欧美日韩亚州综合| 亚洲区一区二| 亚洲激情成人网| 亚洲日本黄色| 国产女主播视频一区二区| 欧美激情视频免费观看| 久久理论片午夜琪琪电影网| 欧美高清视频一区| 狠狠色噜噜狠狠狠狠色吗综合| 久久先锋资源| 亚洲永久精品大片| 欧美日韩国产电影| 国产精品护士白丝一区av| 国产色爱av资源综合区| 国产精品久久久久久久电影| 国产一区二区精品久久91| 在线观看久久av| 国产精品日韩精品欧美在线| 亚洲国产电影| 欧美专区在线| 久久精品国产91精品亚洲| 国产视频在线观看一区二区三区| 黑人一区二区三区四区五区| 国产精品久久二区| 在线综合亚洲欧美在线视频| 一区二区三区日韩在线观看| 这里只有精品在线播放| 在线观看精品视频| 国产精品福利久久久| 在线精品国精品国产尤物884a| 91久久久久久久久久久久久| 欧美影院在线播放| 国产精品视频999| 亚洲精品一区二区三区在线观看| 在线观看亚洲| 夜夜嗨av色综合久久久综合网| 亚洲区一区二| 国产精品久久久久77777| 亚洲黄页视频免费观看| 国产午夜亚洲精品理论片色戒| 国产精品区一区二区三区| 免费在线亚洲| 国产精品一区免费在线观看| 在线日韩中文| 亚洲国产岛国毛片在线| 国产色产综合产在线视频|