亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? nf_drv.c

?? atmel at89c51snd1 做mp3的源代碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
      Nf_send_address_even (0x00);
      Nf_send_address_even (0x00);
      Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[3] );     /* Row address Byte 0         */
      Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[2] );     /* Row address Byte 1         */
      if (NF_5_CYCLE_ADDRESS_BIT)                                                     /* Size of nf >= 128Mbytes ?  */
        Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[1] );   /* Row address Byte 2         */

      Nf_send_command_even(NF_RANDOM_DATA_INPUT_CMD);
      Nf_send_address_even(0x10);
      Nf_send_address_even(0x08);
      Nf_wr_byte_even(0xEF);/* set internal page counter to 2048 */
      Nf_wr_byte_even(0xFF);/* reset delete block marker */

      Nf_send_command_even (NF_PAGE_PROGRAM_CMD);
      ((Byte*)&nf_current_physical_sector_addr_even)[3]++;                            /* increase addresses         */
      ((Byte*)&address2)[3]++;
    }
    nf_parity_bit = ~nf_parity_bit;
  }

  if (gl_cpt_page != 0)
  {
    nf_init_buffer();
    if (nf_parity_bit == NF_ODD)
    {
      Nf_active_ODD();
      Nf_wait_busy_odd();
      Nf_send_command_odd (NF_READ_CMD);
      Nf_send_address_odd (0x00);
      Nf_send_address_odd (0x00);
      Nf_send_address_odd ( ((Byte*)&gl_address)[3] );    /* Row address Byte 0           */
      Nf_send_address_odd ( ((Byte*)&gl_address)[2] );    /* Row address Byte 1           */
      if (NF_5_CYCLE_ADDRESS_BIT)                     /* Size of card >= 128Mbytes ?  */
        Nf_send_address_odd( ((Byte*)&gl_address)[1] );  /* Row address Byte 2           */

      Nf_send_command_odd (NF_COPY_BACK_CMD);
      Nf_wait_busy_odd();
      Nf_send_command_odd (NF_RANDOM_DATA_INPUT_CMD);
      Nf_send_address_odd ( ((Byte*)&gl_cpt_page)[1] );
      Nf_send_address_odd ( ((Byte*)&gl_cpt_page)[0] );
      Nf_send_address_odd ( ((Byte*)&nf_current_physical_sector_addr_odd)[3] );     /* Row address Byte 0           */
      Nf_send_address_odd ( ((Byte*)&nf_current_physical_sector_addr_odd)[2] );     /* Row address Byte 1           */
      if (NF_5_CYCLE_ADDRESS_BIT)                                           /* Size of card >= 128Mbytes ?  */
        Nf_send_address_odd ( ((Byte*)&nf_current_physical_sector_addr_odd)[1] );   /* Row address Byte 2           */
    }
    else
    {
      Nf_active_EVEN();
      Nf_wait_busy_even();
      Nf_send_command_even (NF_READ_CMD);
      Nf_send_address_even (0x00);
      Nf_send_address_even (0x00);
      Nf_send_address_even ( ((Byte*)&address2)[3] );    /* Row address Byte 0           */
      Nf_send_address_even ( ((Byte*)&address2)[2] );    /* Row address Byte 1           */
      if (NF_5_CYCLE_ADDRESS_BIT)                     /* Size of card >= 128Mbytes ?  */
        Nf_send_address_even ( ((Byte*)&address2)[1] );  /* Row address Byte 2           */

      Nf_send_command_even (NF_COPY_BACK_CMD);
      Nf_wait_busy_even();
      Nf_send_command_even (NF_RANDOM_DATA_INPUT_CMD);
      Nf_send_address_even ( ((Byte*)&gl_cpt_page)[1] );
      Nf_send_address_even ( ((Byte*)&gl_cpt_page)[0] );
      Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[3] );     /* row address Byte 0           */
      Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[2] );     /* row address Byte 1           */
      if (NF_5_CYCLE_ADDRESS_BIT)                                                     /* size of nf >= 128Mbytes ?  */
        Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[1] );   /* row address Byte 2           */
    }

    for (j = (gl_cpt_page / 512); j < 4; j++)
    {
      nf_download_buffer();
      nf_download_buffer();
    }
    if (nf_parity_bit == NF_ODD)
    {
      Nf_send_command_odd(NF_RANDOM_DATA_INPUT_CMD);/* reset internal page counter */
      Nf_send_address_odd(0x10);                          
      Nf_send_address_odd(0x08);
      Nf_wr_byte_odd(0xFF);
      Nf_send_command_odd (NF_PAGE_PROGRAM_CMD);
    }
    else
    {
      Nf_send_command_even(NF_RANDOM_DATA_INPUT_CMD); /* reset internal page counter */
      Nf_send_address_even(0x10);                          
      Nf_send_address_even(0x08);
      Nf_wr_byte_even(0xFF);
      Nf_send_command_even (NF_PAGE_PROGRAM_CMD);
    }
  }
}


/*F**************************************************************************
* NAME: nf_copy_block_tail
*----------------------------------------------------------------------------
* PARAMS:
*  even_only bit : if TRUE, only even nf block will be copied
*                  if FALSE, even and odd block will be copied
*
* return:
*----------------------------------------------------------------------------
* PURPOSE:
*   Copy the last part of a block that is not modifiedd uring a write
*   operation
*----------------------------------------------------------------------------
* EXAMPLE:
*----------------------------------------------------------------------------
* NOTE:
*  this function modify :
*   gl_address
*   gl_ptr_mem
*   gl_cpt_page
*   nf_current_physical_sector_addr_odd
*   nf_current_physical_sector_addr_even
*   gl_buffer (reset to 0xFF)
*  nf_redundant_logical_block_value must be up to date
*----------------------------------------------------------------------------
* REQUIREMENTS: 
*
*****************************************************************************/
void nf_copy_block_tail (bit even_only)
{
Uint32 address2;
Byte j;

  /* Address of the source block */
  gl_address = ((Uint32)(nf_block_to_be_deleted_odd)  << NF_SHIFT_SECTOR_BLOCK) + (((Byte*)&nf_current_physical_sector_addr_odd)[3] & 0x3F);
  address2 =   ((Uint32)(nf_block_to_be_deleted_even) << NF_SHIFT_SECTOR_BLOCK) + (((Byte*)&nf_current_physical_sector_addr_even)[3] & 0x3F);

  nf_parity_bit = ((Byte*)&gl_ptr_mem)[3] & 0x01;

  if (gl_cpt_page != 0)
  {
    nf_init_buffer();
    if (nf_parity_bit == NF_ODD)
    {
      Nf_active_ODD();
      Nf_wait_busy_odd();
      Nf_send_command_odd (NF_READ_CMD);
      Nf_send_address_odd (0x00);
      Nf_send_address_odd (0x00);
      Nf_send_address_odd ( ((Byte*)&gl_address)[3] );    /* row address Byte 0       */
      Nf_send_address_odd ( ((Byte*)&gl_address)[2] );    /* row address Byte 1       */
      if (NF_5_CYCLE_ADDRESS_BIT)                         /* size of nf > 128Mbytes ? */
        Nf_send_address_odd ( ((Byte*)&gl_address)[1] );  /* row address Byte 2       */

      Nf_send_command_odd (NF_COPY_BACK_CMD);             /* send copy back command   */
      Nf_wait_busy_odd();
      Nf_send_command_odd (NF_RANDOM_DATA_INPUT_CMD);
      Nf_send_address_odd (0x00);
      Nf_send_address_odd (0x00);
      Nf_send_address_odd ( ((Byte*)&nf_current_physical_sector_addr_odd)[3] );  /* row address Byte 0       */
      Nf_send_address_odd ( ((Byte*)&nf_current_physical_sector_addr_odd)[2] );  /* row address Byte 1       */
      if (NF_5_CYCLE_ADDRESS_BIT)                                                /* size of nf > 128Mbytes ? */
        Nf_send_address_odd ( ((Byte*)&nf_current_physical_sector_addr_odd)[1] );/* row address Byte 2       */
  
      for (j = ((Byte*)&gl_cpt_page)[0] >> 1; j != 0; j--)
      {
        nf_download_buffer();
        nf_download_buffer();
      }
      Nf_send_command_odd (NF_RANDOM_DATA_INPUT_CMD);     /* spare area */
      ((Byte*)&gl_cpt_page)[0] = 0x08; 
      Nf_send_address_odd(0x00);                          
      Nf_send_address_odd(0x08);
      nf_update_spare_data();                         /* update spare data */
      Nf_send_command_odd (NF_PAGE_PROGRAM_CMD);
    }
    else
    {
      Nf_active_EVEN();
      Nf_wait_busy_even();
      Nf_send_command_even (NF_READ_CMD);
      Nf_send_address_even (0x00);
      Nf_send_address_even (0x00);
      Nf_send_address_even ( ((Byte*)&address2)[3] );      /* row address Byte 0       */
      Nf_send_address_even ( ((Byte*)&address2)[2] );      /* row address Byte 1       */
      if (NF_5_CYCLE_ADDRESS_BIT)                          /* size of nf > 128Mbytes ? */
        Nf_send_address_even ( ((Byte*)&address2)[1] );    /* row address Byte 2       */

      Nf_send_command_even (NF_COPY_BACK_CMD);             /* send copy back command   */
      Nf_wait_busy_even();
      Nf_send_command_even (NF_RANDOM_DATA_INPUT_CMD);
      Nf_send_address_even (0x00);
      Nf_send_address_even (0x00);
      Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[3] );     /* row address Byte 0       */
      Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[2] );     /* row address Byte 1       */
      if (NF_5_CYCLE_ADDRESS_BIT)                                                     /* size of nf > 128Mbytes ? */
        Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[1] );   /* row address Byte 2       */
  
      for (j = ((Byte*)&gl_cpt_page)[0] >> 1; j != 0; j--)
      {
        nf_download_buffer();
        nf_download_buffer();
      }
      Nf_send_command_even (NF_RANDOM_DATA_INPUT_CMD);     /* spare area */
      ((Byte*)&gl_cpt_page)[0] = 0x08; 
      Nf_send_address_even(0x00);                          
      Nf_send_address_even(0x08);
      nf_update_spare_data();                         /* update spare data */
      Nf_send_command_even (NF_PAGE_PROGRAM_CMD);
    }

    gl_cpt_page = 0;
    gl_ptr_mem++;
    if (nf_parity_bit == NF_ODD)
    {
      ((Byte*)&nf_current_physical_sector_addr_odd)[3]++;
      ((Byte*)&gl_address)[3]++;
    }
    else
    {
      ((Byte*)&nf_current_physical_sector_addr_even)[3]++;
      ((Byte*)&address2)[3]++;
    }
    nf_parity_bit = ~nf_parity_bit;
  }

  if (((Byte*)&gl_ptr_mem)[3] & 0x7F)
  {

    for (j = (((Byte*)&gl_ptr_mem)[3] & 0x7F); j < 0x80; j++)
    {
      if (nf_parity_bit == NF_ODD)
      {
        if (even_only == FALSE)
        {
          Nf_active_ODD();
          Nf_wait_busy_odd();
          Nf_send_command_odd (NF_READ_CMD);
          Nf_send_address_odd (0x00);                         /* start at column 0        */
          Nf_send_address_odd (0x00);
          Nf_send_address_odd ( ((Byte*)&gl_address)[3] );    /* row address Byte 0       */
          Nf_send_address_odd ( ((Byte*)&gl_address)[2] );    /* row address Byte 1       */
          if (NF_5_CYCLE_ADDRESS_BIT)                         /* size of nf > 128Mbytes ? */
            Nf_send_address_odd ( ((Byte*)&gl_address)[1] );  /* row address Byte 2       */
          Nf_send_command_odd (NF_COPY_BACK_CMD);
          Nf_wait_busy_odd();
      
          Nf_send_command_odd (NF_RANDOM_DATA_INPUT_CMD);
          Nf_send_address_odd (0x00);
          Nf_send_address_odd (0x00);
          Nf_send_address_odd ( ((Byte*)&nf_current_physical_sector_addr_odd)[3] );   /* row address Byte 0      */
          Nf_send_address_odd ( ((Byte*)&nf_current_physical_sector_addr_odd)[2] );   /* row address Byte 1      */
          if (NF_5_CYCLE_ADDRESS_BIT)                                                 /* size of nf > 128Mbytes ?*/
            Nf_send_address_odd ( ((Byte*)&nf_current_physical_sector_addr_odd)[1] ); /* row address Byte 2      */
          Nf_send_command_odd (NF_PAGE_PROGRAM_CMD);
          ((Byte*)&nf_current_physical_sector_addr_odd)[3]++;
          ((Byte*)&gl_address)[3]++;
        }
      }
      else
      {
        Nf_active_EVEN();
        Nf_wait_busy_even();
        Nf_send_command_even (NF_READ_CMD);
        Nf_send_address_even (0x00);
        Nf_send_address_even (0x00);
        Nf_send_address_even ( ((Byte*)&address2)[3] );    /* Row address Byte 0        */
        Nf_send_address_even ( ((Byte*)&address2)[2] );    /* Row address Byte 1        */
        if (NF_5_CYCLE_ADDRESS_BIT)                        /* Size of nf >  128Mbytes ? */
          Nf_send_address_even ( ((Byte*)&address2)[1] );  /* Row address Byte 2        */
        Nf_send_command_even (NF_COPY_BACK_CMD);
        Nf_wait_busy_even();
    
        Nf_send_command_even (NF_RANDOM_DATA_INPUT_CMD);
        Nf_send_address_even (0x00);
        Nf_send_address_even (0x00);
        Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[3] );     /* Row address Byte 0           */
        Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[2] );     /* Row address Byte 1           */
        if (NF_5_CYCLE_ADDRESS_BIT)                                                     /* Size of card >= 128Mbytes ?  */
          Nf_send_address_even ( ((Byte*)&nf_current_physical_sector_addr_even)[1] );   /* Row address Byte 2           */
        Nf_send_command_even (NF_PAGE_PROGRAM_CMD);
        ((Byte*)&nf_current_physical_sector_addr_even)[3]++;
        ((Byte*)&address2)[3]++;
      }
      nf_parity_bit = ~nf_parity_bit;
    }
  }
}


/*F**************************************************************************
* NAME: nf_reassign_block
*----------------------------------------------------------------------------
* PARAMS:
*
* return:
*----------------------------------------------------------------------------
* PURPOSE:
*   Reassign the block value in LUT (copy of LUT)
*----------------------------------------------------------------------------
* EXAMPLE:
*----------------------------------------------------------------------------
* NOTE:
*----------------------------------------------------------------------------
* REQUIREMENTS: 
* ram/xram:
* cycle:
* stack: 
* code:
*****************************************************************************/
void nf_reassign_block (void)
{
Byte i;           /* Counter            */
Uint16 start;
Uint32 address2;  /* LUT source address */

  if (nf_lut_index[nf_zone] == 31)
  {
    if ((nf_buf_free[gl_buf_free_idx].even & 0x7FFF) == nf_look_up_table_block)
    {
      gl_buf_free_idx++;
      if (gl_buf_free_idx > nf_spare_block)
      {
        gl_buf_free_idx = 0;
      }      
    }

    /* Source address */
    address2 = ((Uint32)(nf_look_up_table_block)<<NF_SHIFT_SECTOR_BLOCK) + 62;

    nf_look_up_table_block = nf_buf_free[gl_buf_free_idx].even & 0x7FFF;
    
    gl_buf_free_idx++;
    if (gl_buf_free_idx > nf_spare_block)
    {
      gl_buf_free_idx = 0;
    }      

    /* Target addres */
    gl_address = ((Uint32)(nf_look_up_table_block) << NF_SHIFT_SECTOR_BLOCK);

    nf_lut_index[nf_zone] = 0;

  }
  else
  {
    /* Source address */
    address2 =  ((Uint32)(nf_look_up_table_block) << NF_SHIFT_SECTOR_BLOCK) + 
                ((Uint32)(nf_lut_index[nf_zone])  << 1);
    nf_lut_index[nf_zone]++;
    gl_address = address2 + 2;                        /* Target address */
  }

  Nf_active_EVEN();
  Nf_wait_busy_even();
  Nf_send_command_even (NF_READ_CMD);
  Nf_send_address_even (0x00);
  Nf_send_address_even (0x00);
  Nf_send_address_even (((Byte*)&address2)[3]);
  Nf_send_address_even (((Byte*)&address2)[2]);
  if (NF_5_CYCLE_ADDRESS_BIT)                         /* Size of NF >= 128Mbytes ?    */
    Nf_send_address_even ( ((Byte*)&address2)[1] );   /* Row address Byte 2           */
  Nf_send_command_even (NF_COPY_BACK_CMD);
  
  if (nf_block_min < 512)
  {
    start = nf_block_min << 2;
  }
  else
  {
    start = 0;
  }

  Nf_wait_busy_even();
  Nf_send_command_even (NF_RANDOM_DATA_INPUT_CMD);
  Nf_send_address_even (((Byte*)&start)[1]);           /* Column address Byte 0        */
  Nf_send_address_even (((Byte*)&start)[0]);           /* Column address Byte 1        */
  Nf_send_address_even ( ((Byte*)&gl_address)[3] );    /* Row address Byte 0           */
  Nf_send_address_even ( ((Byte*)&gl_address)[2] );    /* Row address Byte 1           */
  if (NF_5_CYCLE_ADDRESS_BIT)                         /* Size of card >= 128Mbytes ?  */
    Nf_send_address_even ( ((Byte*)&gl_address)[1] );  /* Row address Byte 2           */

  if (nf_block_min < 512)
  {
    for (i = 0; (i <= nf_gl_buf_idx_max) && ((Uint16)(i) < (Uint16)((2048 - start) / 4)); i++)
    {
      Nf_wr_byte_even (nf_buf[i].even.b[0]); 
      Nf_wr_byte_even (nf_buf[i].even.b[1]);
      Nf_wr_byte_even (nf_buf[i].odd.b[0]); 
      Nf_wr_byte_even (nf_buf[i].odd.b[1]);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产91露脸合集magnet| 一区二区三区四区在线播放| 精品国产a毛片| 久久综合狠狠综合久久综合88| 51精品久久久久久久蜜臀| 制服丝袜中文字幕一区| 制服视频三区第一页精品| 精品久久久久久久一区二区蜜臀| 久久久久久久久久电影| 亚洲精品久久久蜜桃| 日韩电影在线一区二区三区| 国产精品一卡二卡在线观看| 丁香五精品蜜臀久久久久99网站| 在线欧美日韩精品| 精品噜噜噜噜久久久久久久久试看 | 香蕉久久夜色精品国产使用方法 | 亚洲高清视频在线| 五月天激情综合| 蜜桃av一区二区三区| 国产a视频精品免费观看| 91网站在线观看视频| 国产成人亚洲综合a∨婷婷| 91色porny| 久久综合国产精品| 五月综合激情婷婷六月色窝| 国产在线精品一区在线观看麻豆| 不卡一区二区三区四区| 7777精品伊人久久久大香线蕉完整版| 日韩视频在线你懂得| 亚洲免费观看视频| 麻豆国产91在线播放| 国产精品911| 精品国产a毛片| 亚洲h在线观看| 99在线精品视频| 国产午夜一区二区三区| 日韩精品1区2区3区| 一本久久综合亚洲鲁鲁五月天 | 国产午夜精品久久| 亚洲精品久久久久久国产精华液| 国产成人啪午夜精品网站男同| 91精品国产丝袜白色高跟鞋| 国产精品久久三区| 国产精品免费视频网站| 国产·精品毛片| 91精品国产一区二区| 调教+趴+乳夹+国产+精品| 色悠悠久久综合| 一区二区日韩电影| 欧美在线一区二区三区| 亚洲永久精品国产| 欧美亚洲免费在线一区| 亚洲大片精品永久免费| 欧美性xxxxx极品少妇| 亚洲电影你懂得| 精品国产伦一区二区三区观看体验 | 美女视频黄频大全不卡视频在线播放| 欧美视频一区二区三区四区 | 日韩黄色在线观看| 欧美成人国产一区二区| 高清不卡一二三区| 一区二区三区欧美日| 日韩免费看网站| 国产又粗又猛又爽又黄91精品| 国产日韩v精品一区二区| 成人一级片网址| 精品日韩成人av| 91丨porny丨首页| 蜜臀精品一区二区三区在线观看| 久久久99久久| 91精品国产色综合久久不卡电影| 韩国精品主播一区二区在线观看| 亚洲美女免费视频| 久久久精品欧美丰满| 欧美美女一区二区在线观看| 国产盗摄一区二区| 亚洲精品老司机| 国产午夜精品一区二区三区视频 | 蜜芽一区二区三区| 国产精品久久久久久户外露出 | 91精品国产综合久久精品app| 另类调教123区| 亚洲色图视频免费播放| 欧美α欧美αv大片| 91色综合久久久久婷婷| 国产成人在线免费观看| 久久99久久99| 国产精品综合网| 久久成人18免费观看| 天天色天天爱天天射综合| 亚洲视频 欧洲视频| 国产日韩精品一区二区三区| 欧美一区二区在线观看| 4438成人网| 精品国产在天天线2019| 欧美一级爆毛片| 欧美一二三在线| 精品国产区一区| 久久久不卡网国产精品二区| 精品第一国产综合精品aⅴ| 制服丝袜亚洲播放| 久久这里只有精品首页| 国产精品美女久久久久aⅴ| 久久精品一区二区三区av| 久久久精品国产免费观看同学| 精品国产三级电影在线观看| 国产欧美视频一区二区三区| 中文字幕亚洲一区二区av在线| 国产片一区二区| 国产精品无码永久免费888| 国产精品欧美极品| 亚洲精选免费视频| 亚洲午夜私人影院| 成人久久18免费网站麻豆| 在线中文字幕一区二区| 国产喂奶挤奶一区二区三区| 亚洲影院久久精品| 国产一区二区主播在线| 国产一区美女在线| 日本精品免费观看高清观看| 在线播放91灌醉迷j高跟美女 | 国产精品麻豆网站| 丝袜美腿成人在线| 成人av网址在线| 欧美精品一区在线观看| 亚洲一卡二卡三卡四卡无卡久久| 韩国av一区二区三区在线观看| 欧美色精品在线视频| 国产人成亚洲第一网站在线播放| 91首页免费视频| 日韩三级精品电影久久久| 国产亚洲综合性久久久影院| 一区二区高清在线| 国产福利电影一区二区三区| 91麻豆精品国产综合久久久久久| 国产精品毛片久久久久久| 蜜臀va亚洲va欧美va天堂| 色伊人久久综合中文字幕| 亚洲人123区| 国产精品2024| 日本久久电影网| 亚洲国产激情av| 午夜亚洲福利老司机| 国产色一区二区| 国产福利91精品| 国产精品久久三| 97久久精品人人澡人人爽| 一区精品在线播放| 91精品福利在线| 亚洲aⅴ怡春院| 日韩视频免费观看高清完整版在线观看 | 一区二区三区在线免费| 欧美日韩五月天| 精品国产乱码久久久久久图片 | 欧美日韩一二三| 免费成人在线影院| 国产女同性恋一区二区| 99精品黄色片免费大全| 五月激情综合婷婷| 欧美哺乳videos| 97精品国产露脸对白| 美女一区二区三区| 国产女主播一区| 欧美肥妇bbw| 一本色道久久综合亚洲91| 国产精品一区二区不卡| 一区二区在线电影| 国产农村妇女精品| 欧美日精品一区视频| 国产麻豆欧美日韩一区| 国产呦萝稀缺另类资源| 国产69精品久久久久毛片| 蜜臀久久99精品久久久久宅男| 亚洲福利视频一区二区| 国产精品免费视频一区| 一区二区视频在线| 日韩主播视频在线| 国产一区二区福利| 91丨porny丨首页| 国产精品短视频| 久久一二三国产| 精品欧美久久久| 欧美一级黄色录像| 欧美一区二区三区视频在线| 欧美丝袜丝交足nylons图片| 欧美久久婷婷综合色| 欧美日韩高清一区二区| 成人爽a毛片一区二区免费| 国产精品夜夜爽| 97久久超碰国产精品电影| 国产成人午夜高潮毛片| 9l国产精品久久久久麻豆| 91在线精品一区二区三区| 一本大道久久a久久精二百| 成人精品视频一区| 国产精品一区二区免费不卡| 国产一区二区三区四区五区美女 | 美女网站色91| 国产·精品毛片| 在线观看免费一区|