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

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

?? mainform.cpp

?? TvicHW32(評估版)另一個編寫驅動程序的實用工具(497KB)
?? CPP
字號:
//---------------------------------------------------------------------------
#include <vcl\vcl.h>
#pragma hdrstop
#include <vcl\IniFiles.hpp>
#include "mainform.h"
//---------------------------------------------------------------------------
#pragma link "Grids"
#pragma link "HW_32"
#pragma resource "*.dfm"

#define MaxPorts  8

Word      PortWSel,PortRSel,NumLine,NumSymbol;
Byte      ValWSel,NomWSel,NomRSel,Scan_Code,Data_Reg,Status_Reg;
DWORD     TestVar   = 0, CurrAddr = 0, PhysAddr  = 0, IRQCounter = 0,
          Flag_Intr = 0, Flag_Tim = 0, Sum_Ticks = 0, CurrTicker = 0,
          OldTicker = GetTickCount();
char      TestString[256];
TCheckBox *CPinRead[26],*CPinWrite[26];
Byte      *TPointPhys[17][17];
boolean   FlagPrint;
Byte      *PointPhys;
short	  IRQ;

TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
	: TForm(Owner)
{
}
//---------------------------------------------------------------------------
ULONG CharToNumber(char ch)
{
  int n,i;
  char hexh[17] = "0123456789ABCDEF";
  n = 0;
  for (i=0;i<=15;i++){ if (UpperCase(ch)==hexh[i]) n=i; }
  return n;
}
//---------------------------------------------------------------------------
int HexToInt(AnsiString s)
{

  int i,r,k;
  char    ch;

  k=1; r=0;
  for (i=s.Length();i>0; i--){
    ch=s[i];
    r=r+CharToNumber(ch)*k; if (i>1) k*=16;
  }
  return r;
}
//---------------------------------------------------------------------------
void ShowButtons()
{
   Form1->B_SetMemory->Enabled  =  Form1->HwCtrl->ActiveHW;
   if (!Form1->HwCtrl->ActiveHW) Form1->B_Mask->Checked  =  FALSE;
   Form1->SpinLPT->Enabled = Form1->HwCtrl->ActiveHW;
   Form1->SpinLPT->Max = Form1->HwCtrl->LPTNumPorts;
   Form1->L_LPTNumber->Caption = IntToStr(Form1->SpinLPT->Position);
   Form1->L_LPTs->Caption = IntToStr(Form1->HwCtrl->LPTNumPorts);
   Form1->L_Base->Caption = IntToHex(Form1->HwCtrl->LPTBasePort,3)+'h';
   Form1->C_Hard->Checked  =  Form1->HwCtrl->HardAccess;
   Form1->C_Hard->Enabled  =  Form1->HwCtrl->ActiveHW;
   Form1->SpinIRQ->Enabled  =  Form1->HwCtrl->ActiveHW && (!Form1->B_Mask->Checked);
   Form1->B_Open->Enabled = !Form1->HwCtrl->ActiveHW;
   Form1->B_CloseDriver->Enabled  =  Form1->HwCtrl->ActiveHW;
   Form1->B_Write->Enabled = Form1->HwCtrl->ActiveHW;
   Form1->B_Read->Enabled = Form1->HwCtrl->ActiveHW;
   Form1->B_WriteAll->Enabled = Form1->HwCtrl->ActiveHW;
   Form1->B_ReadAll->Enabled = Form1->HwCtrl->ActiveHW;
   Form1->C_Init->Enabled = Form1->HwCtrl->ActiveHW;
   Form1->B_Print->Enabled = Form1->HwCtrl->ActiveHW;
   Form1->B_Stop->Enabled = Form1->HwCtrl->ActiveHW;
   Form1->B_ReadMemory->Enabled = Form1->HwCtrl->ActiveHW && (PointPhys!=NULL);
   Form1->B_FillMemory->Enabled = Form1->HwCtrl->ActiveHW && (PointPhys!=NULL);
   Form1->B_Mask->Enabled = Form1->HwCtrl->ActiveHW &&
                           (Form1->HwCtrl->IRQNumber>0) &&
                           (Form1->HwCtrl->IRQNumber<16);
   Form1->C_LPT_IRQ->Enabled = Form1->HwCtrl->ActiveHW &&
       ((Form1->HwCtrl->IRQNumber==7 && Form1->HwCtrl->LPTNumber == 1) ||
       (Form1->HwCtrl->IRQNumber==5  && Form1->HwCtrl->LPTNumber == 2));
   for (int nPin = 1;  nPin<18; nPin++) {
     if (!Form1->HwCtrl->ActiveHW) CPinRead[nPin]->Checked = FALSE;
     if (!Form1->HwCtrl->ActiveHW) CPinWrite[nPin]->Checked = FALSE;
     CPinWrite[nPin]->Enabled = Form1->HwCtrl->ActiveHW;
   };
   CPinWrite[10]->Enabled = FALSE;
   CPinWrite[11]->Enabled = FALSE;
   CPinWrite[12]->Enabled = FALSE;
   CPinWrite[13]->Enabled = FALSE;
   CPinWrite[15]->Enabled = FALSE;
}
void __fastcall TForm1::FormActivate(TObject *Sender)
{
 int i;

 TIniFile* MyIniFile = new TIniFile("HW_test");
 TabbedNotebook1->PageIndex = 0; 
 CPinRead[ 1] = RPin1;    CPinWrite[ 1] = WPin1;
 CPinRead[ 2] = RPin2;    CPinWrite[ 2] = WPin2;
 CPinRead[ 3] = RPin3;    CPinWrite[ 3] = WPin3;
 CPinRead[ 4] = RPin4;    CPinWrite[ 4] = WPin4;
 CPinRead[ 5] = RPin5;    CPinWrite[ 5] = WPin5;
 CPinRead[ 6] = RPin6;    CPinWrite[ 6] = WPin6;
 CPinRead[ 7] = RPin7;    CPinWrite[ 7] = WPin7;
 CPinRead[ 8] = RPin8;    CPinWrite[ 8] = WPin8;
 CPinRead[ 9] = RPin9;    CPinWrite[ 9] = WPin9;
 CPinRead[10] = RPin10;   CPinWrite[10] = WPin10; WPin10->Enabled = FALSE;
 CPinRead[11] = RPin11;   CPinWrite[11] = WPin11; WPin11->Enabled = FALSE;
 CPinRead[12] = RPin12;   CPinWrite[12] = WPin12; WPin12->Enabled = FALSE;
 CPinRead[13] = RPin13;   CPinWrite[13] = WPin13; WPin13->Enabled = FALSE;
 CPinRead[14] = RPin14;   CPinWrite[14] = WPin14;
 CPinRead[15] = RPin15;   CPinWrite[15] = WPin15; WPin15->Enabled = FALSE;
 CPinRead[16] = RPin16;   CPinWrite[16] = WPin16;
 CPinRead[17] = RPin17;   CPinWrite[17] = WPin17;


  if ((GetVersion() & 0x80000000) != 0)
     Label3->Caption = "Windows 95/98";
  else
     Label3->Caption = "Windows NT";
  PhysAddr = MyIniFile->ReadInteger("misc","ADDR",0xC0044);
  IRQ = (short)MyIniFile->ReadInteger("misc","IRQ",10);
  SpinIRQ->Position = IRQ; L_IRQ->Caption = IntToStr(IRQ);
  E_Addr->Text = IntToHex(PhysAddr,8);
  for (i=1; i<=MaxPorts; i++) {
      GWrite->Cells[0][i] = IntToStr(i);
      GWrite->Cells[1][0] = "PORT";
      GWrite->Cells[2][0] = "VAL";
      GWrite->Cells[1][i] = MyIniFile->ReadString("PortW","Port"+IntToStr(i),"");
      GWrite->Cells[2][i] = MyIniFile->ReadString("Values","Val"+IntToStr(i),"");
      GRead->Cells[0][i] = IntToStr(i);
      GRead->Cells[1][0] = "PORT";
      GRead->Cells[2][0] = "VAL";
      GRead->Cells[1][i] = MyIniFile->ReadString("PortR","Port"+IntToStr(i),"");
  };
 MyIniFile->Free();
 MemoHex->Cells[0][0] = "  ADDR";
 MemoHex->Cells[1][0] = "             HEX";
 MemoHex->Cells[2][0] = "     ASCII";
 ShowButtons();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_WriteClick(TObject *Sender)
{
   PortWSel=(Word)HexToInt(GWrite->Cells[1][GWrite->Row]);
   GWrite->Cells[1][GWrite->Row]=IntToHex(PortWSel,4);
   ValWSel=(UCHAR)HexToInt(GWrite->Cells[2][GWrite->Row]);
   GWrite->Cells[2][GWrite->Row]=IntToHex(ValWSel,2);
   NomWSel=(Word)GWrite->Row;
   if (PortWSel==0) {MessageBeep(0); return;}
   HwCtrl->Port[PortWSel]=ValWSel;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_WriteAllClick(TObject *Sender)
{
  Word i,P,V;
  for (i=1; i<=MaxPorts; i++) {
    P=(Word)HexToInt(GWrite->Cells[1][i]); GWrite->Cells[1][i]=IntToHex(P,4);
    if (P) {
      V=(Word)HexToInt(GWrite->Cells[2][i]); GWrite->Cells[2][i]=IntToHex(V,2);
      HwCtrl->Port[P]=V;
    }
   }

}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_ReadClick(TObject *Sender)
{
   PortRSel=(Word)HexToInt(GRead->Cells[1][GRead->Row]);
   GRead->Cells[1][GRead->Row]=IntToHex(PortRSel,4);
   NomRSel=(Word)GRead->Row;
   if (PortRSel==0) { MessageBeep(0); return; }
   GRead->Cells[2][GRead->Row]=IntToHex((int)HwCtrl->Port[PortRSel],2);

}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_ReadAllClick(TObject *Sender)
{
 UCHAR cl[17];
 Word  ports[17],P,N,i;

 N=0;
 for (i=1; i<=MaxPorts; i++) {
   P=(Word)HexToInt(GRead->Cells[1][i]);
   GRead->Cells[1][i]=IntToHex(P,4);
   if(P) {ports[++N]=P; cl[N]=(UCHAR) i;}
 }
 for (i=1; i<=N; i++)
   GRead->Cells[2][cl[i]]=IntToHex((int)HwCtrl->Port[ports[i]],2);


}
//---------------------------------------------------------------------------
void __fastcall TForm1::C_HardClick(TObject *Sender)
{
  HwCtrl->HardAccess = C_Hard->Checked;	
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_SetMemoryClick(TObject *Sender)
{
  ULONG i,n;
  PhysAddr=0; n=0x10000000L;
  for (i=1; i<=8; i++){
    PhysAddr=PhysAddr+CharToNumber(E_Addr->Text[i])*n; n=n>>4;
  };
  E_Addr->Text = IntToHex(PhysAddr,8);
  PointPhys = (Byte*)HwCtrl->MapPhysToLinear(PhysAddr,256);
  B_SetMemory->Enabled = false;
  ShowButtons();

}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_ReadMemoryClick(TObject *Sender)
{
int i,j;
AnsiString s,s1;
char b;
Byte *LocP;

  if (PointPhys) {
    CurrAddr = PhysAddr;
    LocP = PointPhys;
    for (i=1; i<=16; i++) {
      MemoHex->Cells[0][i]=IntToHex(CurrAddr,8);
      s  = "";
      s1 = "";
      for (j=1; j<=16; j++) {
        s = s+IntToHex(*LocP,2);
        b=*LocP++;
        if (b<0x20) b='.';
        s1 = s1 + b;
      }
      MemoHex->Cells[1][i]=s;
      MemoHex->Cells[2][i]=s1;
      CurrAddr+=16;
    }

  }

}
//---------------------------------------------------------------------------
void __fastcall TForm1::E_AddrChange(TObject *Sender)
{
B_SetMemory->Enabled = true;	
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_MaskClick(TObject *Sender)
{
  if (!B_Mask->Checked) {
      Sum_Ticks = Flag_Tim;
      HwCtrl->IRQMasked  =  TRUE;
      HwCtrl->Port[Word(HwCtrl->LPTBasePort+2)] = (Byte)0x00;
      C_LPT_IRQ->Checked = FALSE;
  }
  else {
      IRQ  =  SpinIRQ->Position; 
      HwCtrl->IRQNumber   =  (Byte)IRQ;
      Flag_Intr  =  0;
      Sum_Ticks  =  0;
      Flag_Tim   =  0;
      Scan_Code  =  0;
      OldTicker = GetTickCount();
      CurrTicker = GetTickCount();
      HwCtrl->IRQMasked  =  FALSE;
   };
   ShowButtons();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::C_LPT_IRQClick(TObject *Sender)
{
  Word n = Word(HwCtrl->LPTBasePort+2);
  if (C_LPT_IRQ->Checked)
    HwCtrl->Port[n] = (Byte)0x10;
  else
    HwCtrl->Port[n] = (Byte)0x00;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::WPin1Click(TObject *Sender)
{
  for (Byte nPin = 1; nPin<=17; nPin++)
     HwCtrl->Pin[nPin] = (boolean)CPinWrite[nPin]->Checked;
	
}
//---------------------------------------------------------------------------
void __fastcall TForm1::C_InitClick(TObject *Sender)
{
  HwCtrl->LPTInit();	
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_ClearClick(TObject *Sender)
{
  TextMemo->Clear();	
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_PrintClick(TObject *Sender)
{
    if (FlagPrint) return;
    NumLine = 0;
    NumSymbol = 1;
    FlagPrint = TRUE;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_StopClick(TObject *Sender)
{
  FlagPrint = FALSE;	
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_OpenClick(TObject *Sender)
{
  HwCtrl->OpenDriver();
//  L_Debug.caption:='DebugCode='+IntToStr(HwCtrl.DebugCode);
  if (!HwCtrl->ActiveHW) {
    MessageBeep(0);
    Application->MessageBox("Driver  VICHWxx  not found",
                      " Warning! ",IDOK);
  }
  else {
         IRQ = SpinIRQ->Position;
         HwCtrl->IRQNumber = (Byte)IRQ;
         Timer1->Enabled = TRUE;
       };
  B_SetMemory->Enabled = TRUE;
  ShowButtons();

}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_CloseDriverClick(TObject *Sender)
{
  Timer1->Enabled = FALSE;
  HwCtrl->Port[Word(HwCtrl->LPTBasePort+2)] = 0x00;
  C_LPT_IRQ->Checked = FALSE;
  HwCtrl->CloseDriver();
  B_Mask->Checked = FALSE;
  PointPhys = NULL;
  B_SetMemory->Enabled = FALSE;
  Flag_Intr = 0;
  ShowButtons();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Timer1Timer(TObject *Sender)
{
//    ShortString s;
    AnsiString s;
    if (HwCtrl->ActiveHW) L_Gen->Caption = IntToStr(IRQCounter);
//    L_Debug->caption = "DebugCode="+IntToStr(DebugCode);
    L_ScanCode->Caption = ": "+IntToHex(Scan_Code,2)+"h";
    L_LPT_Data->Caption = ": "+IntToHex(Data_Reg,2)+"h";
    L_LPT_STATUS->Caption = ": "+IntToHex(Status_Reg,2)+"h";
    L_Timers->Caption = IntToStr(Flag_Tim / 1000);
    L_Flag->Caption = IntToStr(Flag_Intr);
    if (HwCtrl->ActiveHW && (!HwCtrl->IRQMasked)){
      CurrTicker = GetTickCount();
      Flag_Tim = Sum_Ticks+CurrTicker-OldTicker;
    }
    else  OldTicker = GetTickCount();
    for ( Byte nPin = 1; nPin<=17;  nPin++)
      CPinRead[nPin]->Checked = HwCtrl->Pin[nPin];

    C_ACKWL->Checked  =  HwCtrl->LPTAckwl;
    C_BUSY->Checked   =  HwCtrl->LPTBusy;
    C_ERROR->Checked  =  HwCtrl->LPTError;
    C_PE->Checked     =  HwCtrl->LPTPaperEnd;
    C_SLCT->Checked   =  HwCtrl->LPTSlct;

    if (FlagPrint) {
      Timer1->Enabled = FALSE;
      for ( Byte i = 1; i<100; i++) {
        Application->ProcessMessages();
        s = TextMemo->Lines->Strings[NumLine];
        s = s+(char)0x0D+(char)0x0A;
        if (NumSymbol>(Word)strlen(s.c_str())) {
          if (NumLine == TextMemo->Lines->Count) {
             Timer1->Enabled = TRUE;
             FlagPrint = FALSE; return;
          };
          NumLine++;
          s = TextMemo->Lines->Strings[NumLine]+(char)0x0D+(char)0x0A;
          NumSymbol = 1;
        };
        if (HwCtrl->LPTPrintChar(s[NumSymbol])) NumSymbol++;
      };
      Timer1->Enabled = TRUE;
    };

    B_Stop->Enabled = FlagPrint;
    B_Print->Enabled = ! FlagPrint;

}
//---------------------------------------------------------------------------
void __fastcall TForm1::SpinIRQClick(TObject *Sender, TUDBtnType Button)
{
  IRQ = SpinIRQ->Position;
  L_IRQ->Caption = IntToStr(IRQ);
  HwCtrl->IRQNumber = IRQ;
  ShowButtons();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::SpinLPTClick(TObject *Sender, TUDBtnType Button)
{
  HwCtrl->LPTNumber = SpinLPT->Position;
  ShowButtons();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::BitBtn3Click(TObject *Sender)
{
 int i;

 TIniFile* MyIniFile = new TIniFile("HW_test");
 MyIniFile->WriteInteger("misc","ADDR",PhysAddr);
 MyIniFile->WriteInteger("misc","IRQ",IRQ);
 for (i = 1; i<=MaxPorts; i++) {
      MyIniFile->WriteString("PortW","Port"+IntToStr(i),GWrite->Cells[1][i]);
      MyIniFile->WriteString("Values","Val"+IntToStr(i),GWrite->Cells[2][i]);
      MyIniFile->WriteString("PortR","Port"+IntToStr(i),GRead->Cells[1][i]);
 };
 MyIniFile->Free();
 Close();
}
//---------------------------------------------------------------------------

void __fastcall TForm1::HwCtrlHwInterrupt(TObject *Sender, int HwCounter,
      BYTE LPT_DataReg, BYTE LPT_StatusReg, BYTE Keyb_ScanCode)
{
  Data_Reg   = LPT_DataReg;
  Status_Reg = LPT_StatusReg;
  Scan_Code  = Keyb_ScanCode;
  IRQCounter = HwCounter;
  Flag_Intr++;
    
}
//---------------------------------------------------------------------------

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
制服.丝袜.亚洲.中文.综合| 亚洲大片在线观看| 亚洲综合免费观看高清完整版| 免费人成精品欧美精品| 成人综合激情网| 日韩女同互慰一区二区| 亚洲乱码精品一二三四区日韩在线| 蜜臀av性久久久久av蜜臀妖精| 91啪在线观看| 国产偷国产偷精品高清尤物| 青青草成人在线观看| 91性感美女视频| 久久人人超碰精品| 日本不卡视频在线观看| 91麻豆国产香蕉久久精品| 久久精品水蜜桃av综合天堂| 男女性色大片免费观看一区二区| 欧洲视频一区二区| 亚洲天堂免费看| 风间由美一区二区av101| 欧美精品一区二区在线播放| 日韩福利视频网| 欧美日韩国产高清一区| 亚洲精品高清视频在线观看| av一本久道久久综合久久鬼色| 久久久久久综合| 六月丁香婷婷色狠狠久久| 欧美日韩高清一区二区不卡| 一区二区三区不卡在线观看| 91蜜桃在线观看| 一区精品在线播放| 99国产精品久久| 综合精品久久久| 91美女视频网站| 亚洲女同ⅹxx女同tv| 色国产综合视频| 亚洲福中文字幕伊人影院| 欧美日韩国产免费一区二区 | 国产亚洲短视频| 国产一区二区三区久久久| xnxx国产精品| 成人一区二区三区中文字幕| 日韩美女视频一区| 色妹子一区二区| 亚洲一区二区中文在线| 欧美理论在线播放| 韩国三级在线一区| 亚洲国产精品国自产拍av| 成人av免费网站| 亚洲国产日日夜夜| 欧美一区二区三区免费观看视频| 激情成人午夜视频| 国产精品毛片久久久久久| 99re66热这里只有精品3直播 | 蜜臀a∨国产成人精品| 精品国产91洋老外米糕| 成人网在线播放| 亚洲一区二区三区四区在线观看 | 久久99热99| 中文字幕av免费专区久久| 91网站最新地址| 日本欧美加勒比视频| 国产精品免费久久久久| 91久久精品一区二区| 理论电影国产精品| 国产精品国产三级国产aⅴ中文| 欧美三级欧美一级| 国产精品538一区二区在线| 亚洲黄色av一区| 精品99一区二区| 一本色道久久综合亚洲精品按摩| 日本女人一区二区三区| 国产精品久久久久久久久久免费看| 欧美丝袜丝交足nylons| 国产成人精品免费一区二区| 天堂久久一区二区三区| 欧美国产精品一区| 91精品国产色综合久久| 岛国av在线一区| 日韩精品一级二级 | 国产精品三级在线观看| 91极品视觉盛宴| 国产一区激情在线| 天天综合色天天综合色h| 欧美激情一区二区三区全黄 | 国产亚洲精品超碰| 欧美日韩国产区一| 色综合一区二区三区| 久久99久国产精品黄毛片色诱| 亚洲自拍偷拍网站| 国产精品人人做人人爽人人添| 精品乱人伦小说| 在线电影欧美成精品| 色噜噜狠狠成人中文综合| 国产自产2019最新不卡| 日本麻豆一区二区三区视频| 亚洲午夜一区二区三区| 国产精品乱码妇女bbbb| 久久综合色播五月| 日韩一区二区免费高清| 91精品国产综合久久久久久| 色综合中文字幕| 97久久精品人人做人人爽| 成人精品小蝌蚪| 国产成人精品免费看| 激情六月婷婷久久| 老司机午夜精品| 蜜臀av在线播放一区二区三区| 亚洲国产乱码最新视频| 亚洲电影一区二区| 亚洲一区二区影院| 亚洲一区二区三区激情| 中文字幕一区三区| 日韩美女视频一区二区| 亚洲人成人一区二区在线观看| 国产精品美女一区二区三区| 国产精品久久福利| 中文字幕亚洲区| 亚洲人成在线播放网站岛国| 中文字幕制服丝袜成人av | 亚洲二区在线视频| 亚洲一区二区三区四区的| 五月天中文字幕一区二区| 三级亚洲高清视频| 美日韩黄色大片| 国产原创一区二区三区| 成人性生交大片免费看在线播放| 成人免费高清在线| 在线观看三级视频欧美| 欧美高清www午色夜在线视频| 91.成人天堂一区| 精品不卡在线视频| 国产精品理论在线观看| 亚洲国产一二三| 久久国产精品色婷婷| 国产成人综合在线观看| 99精品国产热久久91蜜凸| 欧美日韩电影一区| 2019国产精品| 樱花草国产18久久久久| 日韩电影在线免费看| 国产酒店精品激情| 色综合久久久久网| 欧美一区二区三区思思人| 国产日韩欧美制服另类| 亚洲精品亚洲人成人网| 麻豆精品一区二区综合av| 99久免费精品视频在线观看| 在线看不卡av| 精品国产一二三| 亚洲乱码国产乱码精品精的特点 | 欧美xxxxxxxxx| 亚洲特级片在线| 蜜臀国产一区二区三区在线播放| 成人h精品动漫一区二区三区| 欧美日韩色综合| 欧美国产日韩亚洲一区| 午夜精品福利久久久| 成人av免费在线播放| 日韩免费一区二区| 一区二区三区四区视频精品免费 | 亚欧色一区w666天堂| 国产乱码字幕精品高清av | 2024国产精品| 亚洲一区二区中文在线| 高清成人免费视频| 日韩欧美一区在线观看| 亚洲日本在线天堂| 国产一区在线看| 国产传媒一区在线| 欧美一级二级在线观看| 一区二区三区四区激情| 国产大陆a不卡| 精品国产a毛片| 丝袜亚洲另类丝袜在线| 一本久道久久综合中文字幕| 国产欧美一区二区精品秋霞影院| 奇米一区二区三区| 欧美性感一区二区三区| 亚洲女人****多毛耸耸8| eeuss鲁一区二区三区| 久久久国产一区二区三区四区小说| 偷窥少妇高潮呻吟av久久免费| 99re热视频精品| 国产精品短视频| 成人av网站在线观看免费| xnxx国产精品| 国产自产视频一区二区三区| 日韩欧美一级精品久久| 天天色天天爱天天射综合| 欧美色涩在线第一页| 一区二区三国产精华液| 91日韩一区二区三区| 亚洲欧美日韩国产成人精品影院 | 777色狠狠一区二区三区| 亚洲免费观看高清完整版在线| 丁香婷婷深情五月亚洲| 国产清纯美女被跳蛋高潮一区二区久久w | 色猫猫国产区一区二在线视频| 欧美高清在线一区|