国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代做 F28HSM、代寫 C++語言程序
代做 F28HSM、代寫 C++語言程序

時間:2025-04-13  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



F28HS: Hardware-Software Interface CW2: Systems Programming (60%) v1.0 2024/25
 Assessed Coursework 2 — Systems Programming
1 Overview
The aim of this coursework is to develop a simple, systems-level application in C and ARM Assembler, running on a Raspberry Pi with attached devices.
The learning objective of this coursework is for students to obtain detailed understanding of the interaction beween embedded hardware and external devices, in order to control this interaction in low-level code. The programming skills will cover detailed resource management and time sensitive operations. Design choices regarding languages, tools, and libraries chosen for the implementation need to be justified in the accompanying report. This coursework will develop personal abilities in articulating system-level operations and identifying performance implications of given systems through the written report that should accompany the complete implementation.
The report needs to critically reflect on the software development process for (embedded) systems programming contrast it to main stream programming, and comment on performance-relevant design choices as well as impact on resource consumption.
This CW should be done in pairs, using group-sets in Canvas. Team up with a fellow student on the course and sign-up to one group on Canvas under People -> Group.
2 Lab Environment
Hardware environment: As hardware platform, a Raspberry Pi 2, 3 or 4 (not 5) with the starter kit introduced in the course should be used. For Edinburgh students, you can get these by email ap- pointment from “Hurt, Adrian” <A.C.Hurt@hw.ac.uk>. The Raspberry Pi can be directly connected to the machines in the Linux Lab (EM 2.50) using a KVM switch. See the Lecture slides (“Course Overview”) and the technical HOWTOs (Canvas) on this topic. You can then use the keyboard and mouse for input and the monitor for output and work as if on a standard Linux machine.
Software environment: The SD card that is part of the starter kit uses Raspberry OS (32-bit) as Linux-based operating system. It is recommended that you stick to this version, although there might be a more recent version of Raspbian available. If you are installing Raspberry Pi OS yourself, make sure that you are using the 32-bit version, otherwise assembler code will not work as expected.
For developing the code you should use the standard GNU toolchain (gcc, as, ld) that comes with the version of Raspbian that is installed on the SD card. It is strongly recommended that you use the GNU debugger (gdb) for debugging your code. To check for and debug memory errors, we recommend that you use GCC’s Address Sanitizer. See the Lecture slides in the Programming Languages track of the course.
3 Embedded Systems Programming: Master Mind Application
In this assignment, you are required to implement a simple instance of the MasterMind board-game, us- ing C and ARM assembler as implementation language. The application needs to run on an Raspberry Pi 2, 3 or 4 (not 5), with the following attached devices: two LEDs, a button, and an LCD (with attached
   This coursework specification, and the example code provided during the course, is Copyright 2025 Heriot-Watt University. Distributing this coursework specification or your solution to it outside the univer- sity is academic misconduct and a violation of copyright law.
 Deadline: see Canvas module

F28HS: Hardware-Software Interface CW2: Systems Programming (60%) v1.0 2024/25 potentiometer for controlling contrast). The devices should be connected to the RPi via a breadboard,
using the RPi kit that was handed out early in the course.
Application: MasterMind is a two player game between a codekeeper and a codebreaker. Before the game, a sequence length of N and a number of C colours for an arbitrary number of pegs are fixed. Then the codekeeper selects N coloured pegs and places them into a sequence of N slots. This (hidden) sequence comprises the code that should be broken. In turns, the codebreaker tries to guess the hidden sequence, by composing a sequence of N coloured pegs, choosing from the C colours. In each turn the codekeeper answers by stating how many pegs in the guess sequence are both of the right colour and at the right position, and how many pegs are of the right colour but not in the right position. The codebreaker uses this information in order to refine their guess in the next round. The game is over when the codebreaker successfully guesses the code, or if a fixed number of turns has been played. For details see this MasterMind Wikipedia page. If you can’t access Wikipedia, use this local copy of the Wikipedia page. (Creative Commons 4.0. Source: Wikipedia)
Below is a sample sequence of moves (R red, G green, B blue) for the board-game:
 Secret:  R  G  G
================
Guess1:  B  R  G
Answ1:
Guess2:  R  B  G
Answ2:
Guess3:  R  G  G
Answ3:
11 20 3 0
Game finished in 3 moves.
This is the sample sequence of input (IN) and output (OUT) operations in the running application when picking the Secret, followed by the first Guess1 and the first Answ1, corresponding to the example above. This uses an encoding of 1 for R (red), 2 for G (green) and 3 for B (blue). Press 1 means, press the button once, Green Blink 1 means blink the green LED once etc; // starts a comment for this example and is not part of the input/output):
OUT: Secret:  1  2  2   // show secret
IN:  <Press 3> <Pause>  // first input
OUT: <Red Blink>        // first input accepted
OUT: <Green Blink 3>    // echo the input value
IN:  <Press 1> <Pause>  // second input
OUT: <Red Blink>        // second input accepted
OUT: <Green Blink 1>    // echo the input value
IN:  <Press 2> <pause>  // third input
OUT: <Red Blink>
OUT: <Green Blink 2>
OUT: <Red Blink 2>
OUT: <Green Blink 1>
OUT: <Red Blink 1>
OUT: <Green Blink 1>
OUT: <Red Blink 3>
...
// third input accepted
// echo the input value
// input completed
// first no. in answer (exact matches)
// separator
// second no. in answer (contained matches)
// next round starts
// next round
Deadline: see Canvas module

F28HS: Hardware-Software Interface CW2: Systems Programming (60%) v1.0 2024/25
 Coding: The application should be developed on the Raspberry Pi 2, 3 or 4 (not 5), using the device configuration below, with inlined ARM assembler code to directly control the attached devices through GPIO connections. No external libraries for programming the devices should be used in the final ap- plication. It is recommended to encode the C colours as numbers from 1 to C, and to display the sequence of pegs as a sequence of numbers. To test the application, a setting of 3 colours (C=3) and a sequence length of 3 should be used (N=3). In a “debug” mode the program should print the secret sequence at the beginning, so that the answers given can be checked, and each entered sequence (the guess) with the corresponding answer (as 2 numbers).
Wiring/Devices: Two LEDs should be used as output devices: one (green) LED for data, and another (red) LED for control information (e.g. to separate parts of the input and to start a new round). The green data LED (right) should be connected to the RPi using GPIO pin 26. The red control LED (left) should be connected to the RPi using GPIO pin 5. A button should be used as input device. It should be connected to GPIO pin 19. An LCD should be used as an additional output device. It should be connected as follows:
 LCD 1 2 3 4 (RS) 5 (RW) 6 (EN) 7 8
GPIO (GND) (3v Power) (Potentiometer) 25 (GND) 24 (unused) (unused)
LCD 9 10 11 (DATA4) 12 (DATA5) 13 (DATA6) 14 (DATA7) 15 (LED+) 16 (LED-)
GPIO (unused) (unused) 23 10 27 22 (3v Power) (GND)
  This means that the 4 data connections to the LCD display are connected to these 4 GPIO pins on the RPi: 23, 10, 27, 22. All devices should be connected to the RPi using a breadboard. Below is a Fritzing diagram that visualises the entire wiring: Note that the middle pin of the potentiometer needs to be wired to LCD 3, and the other 2 legs to ground and power as shown in this version. Also, use the 3.3V and not the 5V power GPIO pin from the RPi to be on the safe side.. You can connect the RPi GPIO pins directly to the LCD pins, or plug the LCD directly into the breadboard, but it’s usally easier to use a breadboard as shown.
Deadline: see Canvas module

F28HS: Hardware-Software Interface CW2: Systems Programming (60%) v1.0 2024/25
  LCD: Follow the information in the diagram above. To get a closer look at the wiring, you can (but don’t have to) download the project file of the above Fritzing diagram application here. You can view it using the Fritzing diagram application. Follow this FAQ on how to download and install the Fritzing diagram application. The main advantage of viewing the diagram inside the application is that you can zoom in to examine the wiring, and you get info on the pin numbers when you hover the mouse over them. All this is optional, and can work just with the diagram above, and the pin numbers shown in the diagram.
Sample code for the control of LED, button and LCD can be found on the sample sources sec- tion of the Course Information page for F28HS. Note that the low-level operations of setting the mode of a pin, writing to an LED or LCD, and reading from a button need to be encoded in ARM Assembler. Prototypes for these functions digitalWrite, pinMode, writeLED, readButton, waitForButton, are given in the file lcdBinary.c in the gitlab repo, and the code for these func- tions needs to be completed. The matching function also needs to be implemented in ARM As- sembler, and the code in file mm-matches.s needs to be completed (see below). It’s recommended, though, that you first develop a pure C implementation, and then replace the C functions for the above operations with ARM Assembler functions. The rest can be done in C, and you can draw on the sample code to build the functionality of the application.
It is strongly recommended that you do the lab sheets for LED, LCD and button control, before starting the CW. However, you may have to adapt the wiring used in the lab-sheets to the one prescribed in the CW spec.
Deadline: see Canvas module

F28HS: Hardware-Software Interface CW2: Systems Programming (60%) v1.0 2024/25
 Game functionality in C: The game logic of the application (written in C) must provide the following functionality, with the application acting as codekeeper (i.e. generating a random, hidden sequence and answering) and the user as code breaker (i.e. entering guess sequences) (see the sample sequence above):
1. Greeting: At start the RPi should show a personalised greeting, based on the first team members’ family name: have the RPi blink one red for every consonant and 1 green for every vowel in your surname (first 5 letters only). For example, for the surname “Smith” expect this sequence of LED blinks (at each time only one colour should be on): red, red, green, red, red
2. Theapplicationproceedsinroundsofguessesandanswers,asinthesamplefortheboardgame.
3. In each round the player enters a sequence of numbers.
4. A number is entered using the button as an input device. Each number is entered as the number of button presses, i.e. press twice for an input of two etc.
5. A fixed time-out should be used to separate the input of successive numbers. Use timers (either on C or Assembler level), as introduced in the lectures.
6. The red control LED should blink once to acknowledge input of a number.
7. Then the green data LED should repeat the input number by blinking as many times as the button has been pressed.
8. Repeat this sequence of button-input and LED-echo for each element of the input sequence.
9. Once all values have been entered and echoed, the red control LED should blink two times to indicate the end of the input.
10. As an answer to the guess sequence, the application has to calculate the numbers of exact matches (same colour and location) and approximate matches (same colour but different loca- tion).
11. To communicate the answer, the green data LED should first blink the number of exact matches. Then, as a separator, the red control LED should blink once. Finally, the green data LED should blink the number of approximate matches.
12. Finally, the red control LED should blink three times to indicate the start of a new round.
13. If the hidden sequence has been guessed successfully, the green LED should blink three times while the red LED is turned on, otherwise the application should enter the next turn.
14. When an LCD is connected, the output of exact and approximate matches should additionally be displayed as two separate numbers on an 16x2 LCD display (see below).
15. On successful finish, a message “SUCCESS” should be printed on the LCD, followed by the number of attempts required.
Note: The Raspberry Pi should act as codekeeper, so needs to generate a (secret) random se- quence and answer with the number of exact and approximate matches in the sequence above.
Deadline: see Canvas module

F28HS: Hardware-Software Interface CW2: Systems Programming (60%) v1.0 2024/25 Command-line usage: The application shall provide a command-line interface to test its functionality
in an automated way, like this:
  ./cw2 [-v] [-d] [-u <seq1> <seq2>] [-s <secret sequence>]
If run without any options, the program should show the behaviour specified above. If run with the -d option it should run in debug mode, and show the secret sequence, the guessed sequence and the answer, as shown in the example above. If run with the -s option, the <secret sequence> should be used as the sequence to guess (this is useful in combination with the -d option to debug the program). If run with the -u option, it should run a unit test on 2 input sequences, <seq1> and <seq2>, and print the number of exact and approximate matches, e.g.
  ./cw2 -u 123 321
should print (on the terminal, just for debugging)
 1 exact
 2 approximate
Matching function in ARM Assembler: The matching function for sequences, as described above should be implemented in ARM Assembler code and used in the C program for the game logic. An ARM Assembler sub-routine, matching ARM sub-routine calling conventions (AAPCS), should be implemented, either in a separate Assembler file or as inline Assembler, and be used from the C code to determine the number of exact and approximate matches as explained above. During development it’s recommended that you first develop a pure C implementation of the matching function, and to use this version in order to test the game logic of the program. Then, move on and replace the C function for the matching function with an ARM Assembler function.
GitLab repository: To start your project fork the following GitLab repository   , and then clone your forked copy onto a local machine. Ideally, do this directly on the Raspberry Pi. If you don’t have a network connection, clone onto a local machine and then transfer the files to the Raspberry Pi, using for example a USB stick. Remember, you can develop the C parts, including unit testing for the matching function, on any Linux machine, and the repo contains a CI script for automated unit testing, using the -u option. The GitLab repo contains template code with a suggested structure for the master mind C program in master-mind.c and for the ARM Assembler matching function in mm-matches.s. Check the comments in these two files as well as the top-level README.md file in the GitLab repository.
Testing: Use the unit testing provided in the templates for C and Assembler code, to test the matching function, and report the results (number of successful tests) in your report. Unit tests are triggered au- tomatically in the CI pipeline when you upload a new version to GitLab. Beyond this, test the game logic of the application by running the game (in debug mode, which shows the secret sequence at the begin- ning) with a given secret sequence (using the -s option) until you find the secret sequence. Add the sequence of interactions as screenshot or cut-and-paste text to the report. Also, run a unit-testing setup (using the -u option) with the sequences 121 and 313) and show the result: ./cw2 -u 121 313
       Deadline: see Canvas module

F28HS: Hardware-Software Interface CW2: Systems Programming (60%) v1.0 2024/25 4 Submission
You must submit the complete project files, containing the source code, the compiled cw2 executable, and the report (in .pdf format) as one .zip file. Submission is due through the Coursework 2 assign- ment on Canvas. Please check the assignment details on Canvas to see your submission deadline — different campuses may have different deadlines. The main executable driving the application should be called cw2, as discussed in “Command-line Usage” above. This coursework is worth 60% of the module’s mark (including 6% for the assessed lab).
The submitted coursework needs to be demonstrated, by both team members, in the lab slot of Week 12. Demonstration is mandatory and no marks will be awared to submissions that have not been demonstrated.
You are marked for the functionality of the application, but also for code quality and the discussion in the short report. The marking scheme for this project is attached. This project should be done in pairs. Following the submission, there might be selected demos for submissions that don’t sufficiently explain behaviour in the report.
Late Submission Policy
The standard penalty of -30% of the maximum available mark applies to late submissions. No submis-
sions will be accepted after 5 working days beyond the submission deadline.
5 Report Format
The report should have about 2 – 5 pages and needs to cover the following:
• A short problem specification
• The hardware specification and wiring that is used as hardware platform
• A short discussion of the code structure, specifying the functionality of the main functions.
• A discussion of performance-relevant design decisions, and implications on resource consump- tion.
• A list of functions directly accessing the hardware (for LEDs, Button, and LCD display) and which parts of the function use assembler and which use C
• The name and an interface discussion (what are the inputs, what is the output of the sub-routine) of the matching function implemented in ARM Assembler.
• An example set of output from the application running a complete game
• Asummary,coveringwhatwasachieved(andwhatnot),outstandingfeatures,andwhatyouhave learnt from this coursework
 Deadline: see Canvas module

F28HS: Hardware-Software Interface CW2: Systems Programming (60%) v1.0 Marking Scheme
2024/25
Marks
  Criteria
Meeting system requirements and functionality (as specified in Section 3) 38 Report Quality 8 Contents matching the structure in Section 5; discussion of program logic and of
the core functions, controlling the GPIO interface; summary of learning outcomes achieved.
The Application 8 Code quality (both C and ARM Assembler), clear function interfaces, sufficient comments.
Assessed Lab 6 The implementation of the “Traffic Lights” lab needs to be demo’ed in a lab slot.
Total marks 60
Generative AI Usage Policy
Our policy on the use of generative AI tools in F28HS is as follows:
            • Where English is not your first language you may use GenAI to translate the assessment instruc- tions or other relevant content. You may not use GenAI to translate your assessment answers - you must write them in English, as HW requires all work to be completed in English and to be your own work.
• No GenAI generated content is permitted in your assessment submission.
• You should ensure that any use of GenAI to support your assessment planning is identified in
your notes to ensure that you do not unintentionally use it in the assessment.
This covers your use of tools such as ChatGPT, GitHub Copilot and other “AI search” or “code comple- tion” tools. You must not use these tools to generate text or code for F28HS. We will report suspected use of generative AI as academic misconduct.
Deadline: see Canvas module

F28HS: Hardware-Software Interface CW2: Systems Programming (60%) v1.0 2024/25 Academic Misconduct
    Your attention is drawn to the university policy on academic misconduct and to the Contract Cheating Risk and Avoidance Guide (available on Canvas).
This is a pair project and you will have to identify the contributions of each group member in the report. Each group member needs to contribute a substantial implementation task to the project.
The code you submit must be the work of either of the two group members. If some text or code in the coursework has been taken from other sources (beyond the material provided for this course), you must give a clear reference to the source in comments in the code or the report. We cannot give any marks for work that is not your own.
Failure to clearly reference work that has been obtained from other sources, or copying the words or code of another student (other than the group members), is plagiarism.
Asking a third party to complete coursework on your behalf, and then submitting it as your own work, is contract cheating.
You must never give a copy of your coursework writing or code to another student (other than the group members), and you must always refuse any request from another student for a copy of your coursework. Sharing your coursework with another student (other than the group mem- bers) is collusion.
Suspected plagiarism, contract cheating or collusion will be referred to the School Discipline Committee for investigation. This will delay your feedback, and if you are found guilty of mis- conduct then it will result in a penalty such as voiding the course or being withdrawn from the university.
The use of AI generation and code completion tools is not acceptable.
So please don’t do any of the things above! If you have any concerns about potential academic misconduct, please ask your local course leader for guidance.
For details see the University’s academic misconduct policy.
  Deadline: see Canvas module

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:便捷花唄全國APP客服電話-便捷花唄24小時服務(wù)熱線
  • 下一篇:關(guān)于好運花強制下款及客服電話投訴高額利息等問題
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養(yǎng) 十大衛(wèi)浴品牌排行 suno 豆包網(wǎng)頁版入口 wps 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    97精品在线视频| 国产精品久久99久久| 欧美一级欧美一级| 久久福利视频导航| 国产精品成熟老女人| 国产精品嫩草在线观看| 久久精品亚洲国产| 国产精品久在线观看| 久久久国产成人精品| 精品国偷自产在线视频99| www国产91| 国产精品久久久久久久久久久久久| 国产精品网站入口| 国产精品久久久久999| 国产精品久久不能| 欧美激情中文网| 曰韩不卡视频| 亚洲va韩国va欧美va精四季| 亚洲成人第一| 日本高清不卡在线| 欧美国产综合在线| 国产青草视频在线观看| 国产精品一区而去| 久久久亚洲福利精品午夜| 国产a级黄色大片| 久久精彩免费视频| 国产精品大陆在线观看| 亚洲字幕一区二区| 污视频在线免费观看一区二区三区 | 国产又粗又猛又爽又黄的网站| 国产中文字幕日韩| 91久久中文字幕| 久操网在线观看| 国产精品国产福利国产秒拍| 在线免费一区| 日韩欧美视频第二区| 精品一区二区不卡| 国产精品69久久| 久久精品视频在线| 亚洲最大成人在线| 欧美日韩视频免费| 成人羞羞国产免费| 久热精品视频在线| 亚欧洲精品在线视频免费观看| 欧美在线3区| 97免费视频在线| 国产精品嫩草在线观看| 中文字幕制服丝袜在线| 欧美做暖暖视频| 成人毛片100部免费看| 视频一区视频二区国产精品 | 91精品久久久久久久久| 久久久久亚洲精品国产| 美女精品久久久| 日本不卡高字幕在线2019| 国产欧美在线观看| 日韩中文字幕视频在线观看| 亚洲一区二区三区在线视频| 欧美交换配乱吟粗大25p| 69国产精品成人在线播放| 欧美猛交ⅹxxx乱大交视频| 日韩一级免费在线观看| av在线免费观看国产| 久久在线免费观看视频| 欧美日韩电影一区二区三区| 久久婷婷五月综合色国产香蕉| 久久国产精品久久久久久| 欧美日韩无遮挡| 久久99影院| 欧美一区二区三区四区在线 | 操人视频欧美| 久久夜色精品国产欧美乱| 日韩av大片免费看| 99久久精品无码一区二区毛片 | 国产精品高清一区二区三区| 日本一区二区三区在线播放| 国产日本欧美一区二区三区| 久久久国产精品x99av| 少妇人妻互换不带套| 99国产视频| 一本久道久久综合狠狠爱亚洲精品| 国内精品久久久久伊人av| 久久精品国产精品国产精品污| 一区视频二区视频| 国产区欧美区日韩区| 麻豆成人在线看| 国产专区在线视频| 久久综合网hezyo| 免费人成在线观看视频播放| 国产精品美女网站| 欧美在线亚洲一区| 色妞在线综合亚洲欧美| 青青草久久网络| 日韩中文字幕免费| 欧美性大战久久久久xxx| 久久福利电影| 欧美专区在线视频| 国产精品偷伦一区二区| 男女猛烈激情xx00免费视频| 国产精品免费在线| 国内免费精品永久在线视频| 欧美xxxx综合视频| 国产精品中文久久久久久久| 伊人久久av导航| 91精品国产电影| 日韩av电影在线播放| 久久综合久久网| 欧洲日韩成人av| 国产精品免费看久久久无码| 国产日韩欧美综合精品| 在线视频不卡一区二区| 91精品国产网站| 日本在线观看天堂男亚洲| 久久久久久久久久久久久9999| 欧美日韩喷水| 欧美激情视频三区| 久久免费视频网站| 激情小说综合区| 国产999在线| 国产成人精品久久| 黄色一区三区| 色与欲影视天天看综合网| 久久久精品在线视频| 欧美v在线观看| 亚洲最大av在线| 色偷偷888欧美精品久久久| 精品一区二区日本| 亚洲影院在线看| 日韩视频精品在线| 国产精品一区久久久| 日本精品免费观看| 欧美精品在线视频观看| 国产激情在线观看视频| 狠狠色综合网站久久久久久久| 一区二区三区国产福利| 久久99欧美| 国产在线精品一区免费香蕉| 五月天综合婷婷| 国产精品视频福利| 91精品在线看| 黄页网站大全在线观看| 亚洲精品欧美精品| 国产精品少妇在线视频| 99热在线这里只有精品| 欧美精品v日韩精品v国产精品| 久久久久久av| 国产成人精品最新| av在线com| 欧美精彩一区二区三区| 亚洲色婷婷久久精品av蜜桃| 久久精品亚洲精品| julia一区二区中文久久94| 欧美人与动牲交xxxxbbbb| 亚洲欧美国产不卡| 国产精品网站大全| 久久免费一区| av动漫在线观看| 国内精品小视频在线观看| 日本精品久久久久中文字幕| 久久国产精品久久久久久久久久| 久久av一区二区| 成人久久久久久久久| 精品少妇一区二区三区在线| 日韩免费毛片| 午夜欧美性电影| 中文字幕色一区二区| 国产成人精品一区二区三区| 97免费在线视频| 国产亚洲欧美一区二区| 欧美有码在线观看| 欧美一级视频免费在线观看| 一区二区冒白浆视频| 欧美理论片在线观看| 国产精品国产一区二区| 日韩亚洲一区二区| 久久婷婷国产综合尤物精品| 成人久久18免费网站漫画| 国产综合香蕉五月婷在线| 欧美日韩精品免费在线观看视频| 三年中文高清在线观看第6集| 亚洲制服欧美久久| 久久99国产综合精品女同| 国产精品久久久久久久久久久新郎 | 日韩视频免费观看| 久久国产色av免费观看| 91精品国产综合久久久久久蜜臀 | av网址在线观看免费| 国产精品一久久香蕉国产线看观看| 国产一区二区在线视频播放| 免费观看国产精品视频| 国精产品一区一区三区视频 | 欧美日韩精品一区| 欧美性视频精品| 黄色污污在线观看| 免费av一区二区三区| 国产中文字幕免费观看| 国产青春久久久国产毛片| 国产精品一区二| 91免费国产视频| 国产高潮呻吟久久久|