码迷,mamicode.com
首页 >  
搜索关键字:汇编 实验    ( 34526个结果
【无线网络实验】无线局域网组网与管理实验(三)
实验目的和要求 掌握无线路由器配置方法与步骤 学习如何根据无线信道质量更换AP的信道 实验环境及软件 PC机、WirelessMon软件 WirelessMon软件获取链接https://www.passmark.com/products/wirelessmonitor/ 实验操作 此时信道为6 我 ...
分类:其他好文   时间:2021-04-10 12:55:07    阅读次数:0
滴水逆向初级-C语言(二)
2.1.C语言的汇编表示 c语言代码 int plus(int x,int y) { return 0; } void main() { __asm { mov eax,eax } //调用函数 plus(1,2); return; } 汇编代码 1: 2: int plus(int x,int y ...
分类:编程语言   时间:2021-04-10 12:50:12    阅读次数:0
实验2
text.1 x1, y1=1.2, 3.57 x2, y2=2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1={}, y1 ={}'.format(x1, y1)) print('x2={}, y2 ={}'.format(x2,y2)) pri ...
分类:其他好文   时间:2021-04-09 13:25:16    阅读次数:0
黑苹果OC配置工具:OpenCore Configurator for Mac
OpenCore是非常优秀的开源软件,旨在通过提供更加通用和模块化的系统来解决Clover带来的***和问题,***内核加载以***入高级的rootkit,而该rootkit旨在替代Clover。OpenCore最初诞生于HermitCrabs实验室,现在由Acidanthera接手。OpenCor ...
分类:移动开发   时间:2021-04-08 13:58:31    阅读次数:0
DOT + graphviz 轻松画图神器
在线调试地址: Graphviz Online 用法: dot语法 Linux环境下用法: 参考资料: 1. Linux绘图工具之dot 2. 实验: 首先创建一个dot文件,fllow.dot vi fllow.dot digraph G { hello [shape=box]; world [s ...
分类:其他好文   时间:2021-04-08 13:10:42    阅读次数:0
实验2
1、实验内容1 def main(): pass if __name__ == '__main__': main() x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = { ...
分类:其他好文   时间:2021-04-07 11:09:12    阅读次数:0
NASM中的伪指令
伪指令不是真正的指令,而是为了方便NASM汇编器而存在,但是它们的地位与真正的指令相同: label: instruction operands ; comment instruction部分就可以是伪指令 Dx和RESx Dx声明初始化的数据: db 0x55 ; just the byte 0x ...
分类:其他好文   时间:2021-04-07 10:53:23    阅读次数:0
系统编程-信号-信号发送kill、raise、alarm
信号发送 kill 和 raise函数 kill函数参数详解: 实验1 raise和kill 的使用 #include <stdio.h> #include <signal.h> #include <unistd.h> #include <stdlib.h> #include <sys/wait.h ...
分类:其他好文   时间:2021-04-06 15:18:50    阅读次数:0
STM32L4移植WolfSSL例程(下)--实验结果
我们的L4R5ZI的开发版如下: 用USB转串口FT232做连接,PG9和PG10分别为RX和TX,不对就反过来接:) 如果程序没有问题的话,我们打开如串口显示助手,配置好相关参数,可以看到如下页面: 我们可以输入't','b','l','e'执行相应遍历套件指令。 输入't',不用加回车换行,得出 ...
分类:其他好文   时间:2021-04-05 12:52:57    阅读次数:0
实验二
x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = {}'.format(x1, y1)) print('x2 = {}, y2 = {}'.format(x2, y2)) ...
分类:其他好文   时间:2021-04-05 12:41:04    阅读次数:0
34526条   上一页 1 ... 22 23 24 25 26 ... 3453 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!