
ASM
文章平均质量分 72
练习
叶尔孤柏
这个作者很懒,什么都没留下…
展开
-
AND OR XOR(exclusive-or) NOT的定义
AND :If the first operand is one and the second operand is one, the result is one; otherwise the result is zero1 AND 1 = 1 1 AND 0 = 0 0 AND 1 = 00 AND 0 = 0代码验证/* * if the first operand is on...原创 2020-05-04 10:09:53 · 438 阅读 · 0 评论 -
Linux汇编:hello world
Ubuntu 18.4nasm -f -elf64 hello.asm, ld -s -o hello hello.osection .text ;must be declared for linker (ld)global _start ;tell linker entry point_start: mov edx, len ;message length mov e...原创 2020-04-05 11:17:44 · 208 阅读 · 0 评论