99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

COMP1212 代做、代寫 Java/Python 設計程序

時間:2024-08-11  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



School of Computing: assessment brief
   Module title
 Computer Processors
  Module code
 COMP1212
  Assignment title
 August Resit
  Assignment type and description
 In-course assessment. Requires design implementation and testing of code written in HDL and assembly lan- guage
  Rationale
 Provides an opportunity to write HDL and assembly code including understanding the implementation of branching and functions.
  Word limit and guidance
 This coursework should take less than 25 hours to com- plete.
  Weighting
 100%
  Submission dead- line
 5pm 9/8/24
  Submission method
 Gradescope
  Feedback provision
 Feedback will be provided through Gradescope
  Learning outcomes assessed
 Describe the basic building blocks of a computer in de- tail and explain how they are composed to construct computing machinery.
Apply appropriate tools to develop, simulate and test logic circuits (CAD).
Explain how high level programming constructs, such as ’if’ statements and ’for’ loops, are implemented at a machine level
  Module lead
 Andy Bulpitt
  Other Staff contact
 Noleen K ̈ohler
             1

1. Assignment guidance
There are two sections to this resit assessment. Section I requires implementation of
HDL programs and Section II requires the implementation of assembly language. 2. Assessment tasks
SECTION I
Your task is to design and implement a circuit in hdl which takes two 2-bit numbers (A, B) and (C, D) as input and produces a 3-bit output (E, F, G).
The final circuit has 6 inputs in total (f1, f0, A, B, C, D) and 3 outputs (E, F, G). The function of the circuit is determined by the two inputs f1 and f0.
The truth tables below define the operation of the circuit for each combination of f1 and f0.
ABCDFG ABCDFG 000011 000000 000110 000100 001001 001000 001100 001100 010011 010000 010110 010101 011001 011000 011100 011101 100011 100000 100110 100100 101001 101010 101100 101110 110011 110000 110110 110101 111001 111010 111100 111111
                                    Table 1: When f1, f0 = (1, 1) FZero
Table 2: When (f1, f0) = (1, 0) FOne
2

  ABCDFG ABCDEFG 000000 0000000 000101 0001001 001010 0010010 001111 0011011 010001 0100001 010101 0101010 011011 0110011 011111 0111100 100010 1000010 100111 1001011 101010 1010100 101111 1011101 110011 1100011 110111 1101100 111011 1110101 111111 1111110
Table 3: When (f1, f0) = (0, 1) FTwo Table 4: When (f1, f0) = (0, 0) FThree
(a) For each of the truth tables above, implement a logic circuit in HDL that will perform the function specified by the truth table. You should create one circuit for each truth table and test it produces the required output for that truth table. The circuit for each truth table should be named FZero, FOne, FTwo, FThree corresponding to the names of the truth tables given above and must have corresponding filenames FZero.hdl, FOne.hdl, FTwo.hdl, FThree.hdl.
Each circuit must have four inputs named A,B,C and D. Chips FZero, FOne and FTwo will have two outputs (F,G). Chip FThree will have three outputs named E,F and G.
You must only use the built-in AND, NAND, OR, NOR, NOT, Mux, XOR or DMux chips.
The test files provided (.tst and .cmp) can be used to test each output of a chip. For example FZero1.tst tests the F output of the chip FZero.hdl and FZero2.tst tests the G output of FZero.hdl.
[9 marks]
(b) Combine all four circuits into one circuit which takes all six inputs and three
                                  3

outputs and test it to ensure it produces the correct output depending on the value of the inputs f1 and f0. Call the chip FALL. You can test this chip using FALL.tst but may wish to create further tests before submission. The value of output E is undefined (can be either 0 or 1) unless (f1, f0) = (0, 0)
You must only use the built-in AND, NAND, OR, NOR, NOT, Mux, XOR or DMux chips.
[4 marks]
(c) Stretch Activity
When performing computational operations it is often useful to be able to exe- cute a sequence of operations, each one using the output of the previous step as an input to the next step. For example to OR 3 values X OR Y OR Z you might first calculate X OR Y and then on the next step apply OR Z to the previous output (X OR Y ).
For this task adapt the circuit FALL so that it can combine a sequence of operations defined by different values for f1 and f0 at each step, by enabling the outputs Ft and Gt of step t to be used (feedback) as the inputs for the next operation Ct+1 and Dt+1 for step t + 1. You should also add a further input (Load) to the chip which when Load = 1 will enable you to load new inputs to Ct andDt andwhensetto0setsCt+1 =Ft andDt+1 =Gt. TheLoadinput will allow you to manually set the values of C and D at the start and during the sequence if required.
Call this chip FSEQ. You can test this chip using FSEQ.tst but may wish to create further tests before submission.
You must only use the built-in AND, NAND, OR, NOR, NOT, Mux, DMux, XOR or DFF chips.
[Total for Section I 20 marks]
SECTION II
The Feistel cipher is a symmetric block cipher encryption framework which is the basis of many modern day encryption algorithms. In this coursework you will implement a Feistel cipher system as a software implementation in both a high level language and Hack Assembly.
In a Feistel cipher the plaintext, P, to be encrypted is split into two equal size parts L0 and R0 such that P = L0R0. A function F is applied to one half of the plaintext, combined with a key, and the result is XOR’d with the other half of the plaintext.
4
[7 marks]

Feistel ciphers often employ multiple rounds of this scheme. In general the scheme works as follows, for all i = 0,...,n,
Li+1 = Ri
Ri+1 =Li ⊕F(Ri,Ki)
To decrypt an encrypted message using this cipher we can apply the same procedure inreverse. Fori=n,n−1,...,0,
Ri = Li+1
Li =Ri+1 ⊕F(Li+1,Ki)
For this coursework we are interested in the 16-bit Feistel cipher which uses 4 rounds. The function F (A, B) = A ⊕ ¬B.
The keys are derived from a single 8-bit key K0 such that,
K0 = b7b6b5b4b3b2b1b0 K1 = b6b5b4b3b2b1b0b7 K2 = b5b4b3b2b1b0b7b6 K3 = b4b3b2b1b0b7b6b5
(a) Write a program (XOR.asm) in HACK assembly that implements an XOR func- tion between two 16-bit values stored in RAM[3] and RAM[4] and stores the result in RAM[5].
[6 marks]
(b) Write a program (Rotate.asm) in HACK assembly that implements an algorithm to rotate the bits of a 16-bit number left (Least Significant bit (LSb) to Most Significant bit (MSb)). The original number should be stored in RAM[3] the number of times to rotate the bits should be in RAM[4] and the result stored in RAM[5], i.e. 1010111100000000 rotated left 3 times would be 0111100000000101 where the MSb is used to replace the LSb.
[12 marks]
5

(c) Write a program (FeistelEncryption.asm) in HACK assembly, that implements the described Feistel encryption system. The initial key, K0, will be stored in RAM[1], and the 16-bit plaintext will be stored in RAM[2]. The result of the encryption should be stored in RAM[0].
[12 marks]
[Total for Section II 30 marks]
3. General guidance and study support
Tools required to simulate the hardware and CPU are provided on Minerva under Learning resources: Software.
Please ensure the files you upload work with the test files provided and use the filenames provided in this sheet. Do not alter the format of the lines of these test files in any way. The spacing in each line needs to be preserved You are of course welcome to build your own test files in the same format or add to these files.
Ensure the files you upload pass the submission tests provided on Gradescope. These are not necessarily the same tests as those that will be used to grade your submission.
4. Assessment criteria and marking process
This coursework will be marked using Gradescope. Feedback will be provided through
Gradescope and example solutions discussed in class.
Marks are awarded for passing the automated tests on the submitted programs de- tailed below.
5. Presentation and referencing
Submitted code should provide suitable comments where possible.
6. Submission requirements
Links to submit your work can be found on Minerva under Assessment and feed-
back/Submit my work.
For section I submit only your hdl files, uploaded individually. Ensure you use only the filenames provided in this specification sheet. The names must match the specification exactly, including the use of upper and lower case characters i.e. FZero.hdl is valid however, fzero.hdl or FZero.HDL are not valid.
For section II submit only your asm files.
7. Academic misconduct and plagiarism
Academic integrity means engaging in good academic practice. This involves essential academic skills, such as keeping track of where you find ideas and information and referencing these accurately in your work.
6

By submitting this assignment you are confirming that the work is a true expression of your own work and ideas and that you have given credit to others where their work has contributed to yours.
8. Assessment/marking criteria grid Section I
No marks will be awarded for tests which fail or use of chips other than those listed.
• Part (a) There is one test to check the complete truth table for each output of the chips [9 marks].
• Part (b) There are four tests to check the complete truth table of the FALL chip [4 marks].
• Part (c) will be evaluated by testing it on three sequences of functions of various lengths [7 marks].
[Total for Section I 20 marks]
Section II
No marks will be awarded for tests which fail
• Part a) is graded using 3 tests, each worth 2 marks. [max 6 marks] • Part b) is graded using 4 tests, each worth 3 marks. [max 12 marks] • Part c) is graded using 4 tests, each worth 3 marks [max 12 marks]
[Total for Section II 30 marks]
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:Econ 312代寫、代做c/c++,Java編程語言
  • 下一篇:COMP1711 代寫、代做 C++語言程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                一区二区三区影院| 日韩国产精品大片| 国产亚洲福利社区一区| 亚洲精品日韩一| 毛片av中文字幕一区二区| 国产精品99久久久久久似苏梦涵| 不卡的av网站| 成人国产在线观看| 欧美精品一级二级| 精品日韩一区二区| 欧美日韩国产天堂| 国产日韩成人精品| 蜜臀av性久久久久蜜臀aⅴ| 成人性生交大片免费看中文| 欧美三级资源在线| 中文字幕成人av| 韩国精品主播一区二区在线观看| 色婷婷国产精品| 精品国产污污免费网站入口| 99久久精品99国产精品| 久久精品人人做人人综合| 美女精品一区二区| 欧美成人激情免费网| 亚欧色一区w666天堂| 91影院在线观看| 亚洲国产精品成人综合| 国产精品一区三区| 久久久久久亚洲综合影院红桃| 水蜜桃久久夜色精品一区的特点 | 一区二区三区日韩| 成人听书哪个软件好| 日韩一区二区电影网| 婷婷中文字幕综合| 91精品国产aⅴ一区二区| 亚洲国产成人高清精品| 日本高清成人免费播放| 亚洲影视资源网| 国产99久久久国产精品免费看| 国产视频一区二区在线观看| av在线播放不卡| 亚洲欧美一区二区三区国产精品 | 国产精品99久久久久久宅男| 一区二区日韩av| 免费av网站大全久久| 欧美日韩久久久久久| 亚洲一区二区三区美女| 国产91精品一区二区麻豆网站 | 91精品国产一区二区人妖| 中文av字幕一区| 97久久超碰精品国产| 国产精品激情偷乱一区二区∴| 国产a精品视频| 国产亲近乱来精品视频| 久久激情五月婷婷| 欧美大胆人体bbbb| 成人免费视频app| 亚洲色图制服丝袜| 欧美成人a在线| 欧美电视剧在线观看完整版| 91亚洲精品久久久蜜桃网站| 精品一区二区在线观看| 日本欧美一区二区| 中文字幕va一区二区三区| 欧美日韩电影在线播放| 99精品欧美一区二区蜜桃免费| 麻豆精品视频在线观看| 亚洲成a天堂v人片| 日本不卡视频一二三区| 亚洲国产一区在线观看| 欧美成人一区二区| 久久精品久久久精品美女| 自拍偷拍国产亚洲| 偷拍日韩校园综合在线| 日本高清不卡aⅴ免费网站| 在线观看视频欧美| 亚洲激情图片小说视频| 亚洲午夜久久久久久久久久久| 午夜av一区二区三区| 制服.丝袜.亚洲.另类.中文| 欧美a一区二区| 日本一区二区久久| 中文字幕免费一区| 欧美日韩国产精品成人| 麻豆91在线观看| 国产女人18毛片水真多成人如厕| k8久久久一区二区三区 | 欧美色爱综合网| 男女性色大片免费观看一区二区 | 中文字幕乱码久久午夜不卡| 99视频有精品| 视频一区欧美日韩| 国产精品卡一卡二| 欧美人妖巨大在线| 成人av影视在线观看| 亚洲亚洲精品在线观看| 精品区一区二区| 972aa.com艺术欧美| 日韩国产成人精品| 一区二区三区**美女毛片| 欧美成人精品1314www| 成人a免费在线看| 婷婷中文字幕综合| 久久蜜桃香蕉精品一区二区三区| 亚洲第一狼人社区| 国产精品人人做人人爽人人添| 欧美日韩视频在线第一区| 精品亚洲aⅴ乱码一区二区三区| 亚洲品质自拍视频| 国产亚洲欧美日韩日本| 日韩免费观看高清完整版| 成人午夜激情视频| 日韩精品乱码免费| 一区二区在线电影| 久久美女艺术照精彩视频福利播放| 欧美精品一卡二卡| 在线亚洲高清视频| 99视频在线精品| 国产做a爰片久久毛片| 午夜伊人狠狠久久| 午夜精品久久久久影视| 亚洲精品国产第一综合99久久| 久久亚洲欧美国产精品乐播| 欧美一区二区不卡视频| 欧美三级蜜桃2在线观看| 99精品久久只有精品| 国产99久久久精品| 精品一区二区影视| 蜜桃视频一区二区三区| 亚洲一区av在线| 亚洲欧美日韩中文字幕一区二区三区 | 国产欧美一区在线| 久久久久久久久久久电影| 欧美一区午夜精品| 欧美日韩国产一二三| 成人激情文学综合网| 激情五月激情综合网| 国产永久精品大片wwwapp| 精品一区二区三区免费播放| 日韩国产高清影视| 日本特黄久久久高潮| 亚洲h在线观看| 久久国产乱子精品免费女| 日韩制服丝袜av| 日本伊人精品一区二区三区观看方式| 依依成人综合视频| 综合网在线视频| 一区二区三区在线视频免费 | 欧美日韩国产高清一区二区三区 | 91麻豆免费在线观看| 91蝌蚪porny| 欧美在线|欧美| 日本韩国欧美三级| 91麻豆精品国产91久久久使用方法 | 国产一区二区三区不卡在线观看| 精品一二三四区| 国产一区二区三区在线观看免费| 国产精品一区二区在线观看不卡| 九九视频精品免费| 国产精品一区二区无线| 国产成人8x视频一区二区| 日本午夜精品视频在线观看 | 日日夜夜免费精品| 午夜欧美大尺度福利影院在线看| 丝袜亚洲另类欧美| 丁香另类激情小说| 91在线国产观看| 欧美中文字幕一二三区视频| 欧美高清一级片在线| 久久亚洲私人国产精品va媚药| 中文字幕亚洲一区二区av在线| 亚洲乱码精品一二三四区日韩在线| 视频一区二区国产| 盗摄精品av一区二区三区| 色乱码一区二区三区88| 欧美军同video69gay| 久久九九久精品国产免费直播| 亚洲国产欧美一区二区三区丁香婷| 蜜臀精品一区二区三区在线观看 | 国产日韩综合av| 一区二区三区中文字幕| 国产原创一区二区| 欧美日韩视频在线第一区 | 色婷婷国产精品| 久久精品亚洲一区二区三区浴池| 天涯成人国产亚洲精品一区av| 国产精品一区在线观看你懂的| 精品视频999| 国产精品水嫩水嫩| 国产在线视频一区二区| 欧美午夜在线观看| 欧美高清在线一区| 麻豆中文一区二区| 在线观看www91| 亚洲三级小视频| 国产一区二区三区日韩| 欧美三级三级三级| 亚洲免费伊人电影| 99热在这里有精品免费| 亚洲精品一区二区三区蜜桃下载| 亚洲图片有声小说|