搜索结果
查询Tags标签: instruction,共有 8条记录-
x86_64汇编基础:Basics
参考https://cs61.seas.harvard.edu/site/2018/Asm1/正文 Registers Registers are the fastest kind of memory available in the machine. x86-64 has 14 general-purpose registers and several special-purpose registers. This table gives all the basic registers,…
2022/8/20 14:24:37 人评论 次浏览 -
Study Notes of CS:APP (Chapter 1)
Study Notes of CS:APP Resources [21-12] Official Material [22-01] • Textbooks • Randal E. Bryant and David R. OHalloron, Computer Systems: A Programmers Perspective, Third Edition, Pearson, 2016 • Courses • 15-213 Instances • 15-213/18-21…
2022/1/16 6:04:33 人评论 次浏览 -
Study Notes of CS:APP (Chapter 1)
Study Notes of CS:APP Resources [21-12] Official Material [22-01] • Textbooks • Randal E. Bryant and David R. OHalloron, Computer Systems: A Programmers Perspective, Third Edition, Pearson, 2016 • Courses • 15-213 Instances • 15-213/18-21…
2022/1/16 6:04:33 人评论 次浏览 -
编程题:《语言解释器》
一、语言解释器 描述: 实现一个简单的语言解释器,支持以下指令: 指令格式描述mov a v把数v赋值给a,其中a是变量名称,由不超过10个小写字母组成,v是变量名或者常数(常数为-10000~10000的整数)inc a变量a加1dec a变量a减1jnz a v如果变量a的值不是0,则相对跳转v条指…
2022/1/8 20:04:36 人评论 次浏览 -
编程题:《语言解释器》
一、语言解释器 描述: 实现一个简单的语言解释器,支持以下指令: 指令格式描述mov a v把数v赋值给a,其中a是变量名称,由不超过10个小写字母组成,v是变量名或者常数(常数为-10000~10000的整数)inc a变量a加1dec a变量a减1jnz a v如果变量a的值不是0,则相对跳转v条指…
2022/1/8 20:04:36 人评论 次浏览 -
第二章基础静态分析进阶:x86反汇编
第二章基础静态分析进阶:x86反汇编 《基于数据科学的恶意软件分析》代码清单2-2 反汇编ircbot.exepython SyntaxError: invalid character in identifier《基于数据科学的恶意软件分析》 Malware Data Science Attack Detection and Attribution Joshua Saxe Hillary San…
2021/11/26 22:10:27 人评论 次浏览 -
第二章基础静态分析进阶:x86反汇编
第二章基础静态分析进阶:x86反汇编 《基于数据科学的恶意软件分析》代码清单2-2 反汇编ircbot.exepython SyntaxError: invalid character in identifier《基于数据科学的恶意软件分析》 Malware Data Science Attack Detection and Attribution Joshua Saxe Hillary San…
2021/11/26 22:10:27 人评论 次浏览 -
nvidia jetson agx xavier执行python3后出现错误:“Illegal instruction(cpre dumped)”
在执行Python脚本时出现这个错误 修改环境变量: sudo gedit /etc/profile 在环境变量的最后一行增加以下这行: export OPENBLAS_CORETYPE=ARMV8 更新环境变量 source /etc/profile 重启xavier reboot
2021/4/29 12:29:03 人评论 次浏览