题目总结 华南理工大学 单片机 自动化期末考试题 老师什么重点都不画,同学们复习起来往往一头雾水,现将2022年考的内容进行汇总,便于学弟学妹们进行复习。
2022-11-29 14:16:29 9KB 单片机 华南理工
1
文件格式为rar,其中收录文章中提到的几个题以及其他我解出来的题 建议配合文章食用 原文链接:https://blog.csdn.net/qq_27489877/article/details/128086919 希望大家在ctf的路上都能越走越远
2022-11-29 09:00:31 18.94MB ctf
1
包含题目和工程文件,自己备赛期间写的程序,用的是新板子,STM32G431+CubeMX,功能全部实现,内容浅显易懂,如有问题可以联系我。
2022-11-25 22:35:18 24.6MB 蓝桥杯嵌入式 STM32G431 CubeMx
1
包含题目和工程文件,自己备赛期间写的程序,用的是新板子,STM32G431+CubeMX,功能全部实现,内容浅显易懂,如有问题可以联系我。
2022-11-25 22:09:19 22.87MB 蓝桥杯嵌入式 STM32G431 CubeMx
1
大学计算机信息技术章节测试题目答案.doc
2022-11-25 11:14:25 2.52MB 信息技术 大学生网课
1
2022年泰迪杯B题题目和数据,由于要者自取。 其中包括一个pdf文件,三个CSV文件。
2022-11-24 22:22:39 1MB 数据分析
1
1. 在某个分页管理系统中,某一作业有5个页面,被分别装入到主存的第2、5、6、8、9块中,假定页面和块大小均为1024字节,当作业在CPU上运行时,执行到其地址空间第200号处遇到一条传送命令: MOV 2300,3500 请计算出MOV指令中两个操作数的物理地址? 2. 某分页系统的逻辑地址为16位,其中高6位为页号,低10位为页内偏移量,则在这样的地址结构中,请回答: (1)一页有多少个字节? (2)逻辑地址可有多少页? (3)一个作业最大的使用空间是多少字节? 3. 系统里有4类资源,资源总数向量为:(6 3 4 2),在某一时刻,用银行家算法考虑下列系统状态 : 进程 分配矩阵 最大需求矩阵 A 3 0 1 1 4 1 1 1 B 0 1 0 0 0 2 1 2 C 1 1 1 0 4 2 1 0 D 1 1 0 1 1 1 1 1 E 0 0 0 0 2 1 1
2022-11-24 20:02:44 24KB 操作系统
1
数据冒险2(load-use) Clock Cycle 1 Cycle 2 Cycle 3 Cycle 4 Cycle 5 Cycle 6 Cycle 7 Cycle 8 I0: Load Plus 1 Plus 2 R-Type (采用寄存器前半写后半读,不转发) 如果第1条指令为load,且目标是写入寄存器R 则随后的第2、3条指令使用R时都会发生数据冒险 再后的第4条及之后的指令都不会发生冒险 Ifetch Reg/Dec Exec Mem Wr Ifetch Reg/Dec Exec Mem Wr Ifetch Reg/Dec Exec Mem Wr Ifetch Reg/Dec Exec Mem Wr * Similarly, although the load instruction is fetched during cycle 1, the data is not written into the register file until the end of Cycle 5. Consequently, the earliest time we can read this value from the register file is in Cycle 6. In other words, there is a 3-instruction delay between the load instruction and the instruction that can use the result of the load. This is referred to as Data Hazard in the text book. We will show in the next lecture that by clever design techniques, we can reduce this delay to ONE instruction. That is if the load instruction is issued in Cycle 1, the instruction comes right next to it (Plus 1) cannot use the result of this load but the next-next instruction (Plus 2) can. +2 = 73 min. (Y:53)
2022-11-24 17:59:59 662KB 题目
1
用预处理指令#define 声明一个常数,用以表明1年中有多少秒(忽略闰年问题) #define SECONDS_PER_YEAR (60 * 60 * 24 * 365)UL 我在这想看到几件事情: 1) #define 语法的基本知识(例如:不能以分号结束,括号的使用,等等) 2)懂得预处理器将为你计算常数表达式的值,因此,直接写出你是如何计算一年中有多少秒而不是计算出实际的值,是更清晰而没有代价的。 3) 意识到这个表达式将使一个16位机的整型数溢出-因此要用到长整型符号L,告诉编译器这个常数是的长整型数。 4) 如果你在你的表达式中用到UL(表示无符号长整型),那么你有了一个好的起点。记住,第一印象很重要。
2022-11-24 10:56:53 186KB C/C++
1
中职网络安全2021年国赛Wireshark流量分析题目+capture.pcapng数据包文件
2022-11-23 22:25:10 634KB 中职 网络安全 Wireshark流量分析
1