上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页
摘要: 所需工具: 1.vscode 2.编译工具(来自haribote后续改用nasm+gcc) 环境: windows10 64位 使用方法: 直接下载,这个目录就是开发环境 阅读全文
posted @ 2022-11-28 13:40 Z_Chan 阅读(59) 评论(0) 推荐(0) 编辑
摘要: assume cs:code,ss:stack stack segment db 16 dup(0) stack ends code segment s: mov al,5 mov bl,3 ret;return to block clode behind the call start: mov a 阅读全文
posted @ 2022-11-27 13:18 Z_Chan 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 上代码 assume cs:code,ss:stack stack segment db 16 dup(0) stack ends code segment s: mov bx,16 ret;return to block clode behind the call start: mov ax,st 阅读全文
posted @ 2022-11-27 12:42 Z_Chan 阅读(71) 评论(0) 推荐(0) 编辑
摘要: ;ret and call assume cs:code stack segment db 8 dup(0) stack ends code segment mov ax,4c00h int 21h start: mov ax,stack mov ss,ax mov sp,8;stack top p 阅读全文
posted @ 2022-11-26 17:29 Z_Chan 阅读(157) 评论(0) 推荐(0) 编辑
摘要: assume cs:code,ss:stack stack segment db 4 dup(11h);create 4 byte's memory and inject 11*4 stack ends code segment start: mov ax,stack mov ss,ax mov a 阅读全文
posted @ 2022-11-26 17:07 Z_Chan 阅读(42) 评论(0) 推荐(0) 编辑
摘要: offset就是把偏移地址取出来 ;offset can get ip address in front of the : assume cs:code code segment start: mov ax,offset start s:mov ax,offset s code ends end s 阅读全文
posted @ 2022-11-24 13:57 Z_Chan 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 我们用dx,实现cx数据的临时存储 ;dx be used for double loops, it can save the value of cx ;double loop assume cs:code code segment mov cx,2h mov ax,0h s: mov dx,cx 阅读全文
posted @ 2022-11-23 13:33 Z_Chan 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 效果图,在地址76c:0这里本来是abc的,上代码 assume ds:data,cs:code data segment db 'abc' data ends;data block but the data will be saved in memory block 76c:0 code segm 阅读全文
posted @ 2022-11-23 09:15 Z_Chan 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 版权声明:本文为CSDN博主「JackieZhengChina」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/admans/article/details/106942355 阅读全文
posted @ 2022-11-22 11:27 Z_Chan 阅读(3093) 评论(0) 推荐(0) 编辑
摘要: bias的使用 这个不一定在中间可以改变力的大小 <TextView android:layout_width="100dp" android:layout_height="50dp" android:background="@color/purple_700" android:gravity="c 阅读全文
posted @ 2022-11-21 12:47 Z_Chan 阅读(20) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页