上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页
摘要: assume cs:code code segment ; db 1h,2h,3h,4h; arr[] in cs ip=[0,1,2,3] dw 1200h,1300h; arr[] in cs ip=[0,2,4] 读出来是反的1200变0012,很烦这个我一般都是试一下就知道了不记 ;会读成代 阅读全文
posted @ 2022-11-21 12:18 Z_Chan 阅读(284) 评论(0) 推荐(0) 编辑
摘要: assume cs:code code segment mov cx,0ffh ;循环ff次,到00就停止loop mov bx,0 ;初始化bx,这个是偏移地址 s: mov ax,0h mov ds,ax ;确定ds段地址为0 mov al,ds:[bx] ;两位两位读数据 add bx,200 阅读全文
posted @ 2022-11-21 12:07 Z_Chan 阅读(66) 评论(0) 推荐(0) 编辑
摘要: assume cs:codesg codesg segment mov ax,1000h mov ds,ax mov ax,[5];this [5] can not symbol [5] in debug ;or mov ax,ds:[5] ; mov bx,5 ; mov ax,[bx] ; mo 阅读全文
posted @ 2022-11-21 11:27 Z_Chan 阅读(36) 评论(0) 推荐(0) 编辑
摘要: assume cs:codesg codesg segment mov ax,12h mov ax,4c00h int 21h ;return to cmd -p codesg ends end assume cs:codesg //确定cs段地址,就是代码段地址,取个别名叫codesg codes 阅读全文
posted @ 2022-11-21 11:20 Z_Chan 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 把控件放到控件上面 看图就知道,紫色的view 遮住了半边黑色的view 如图,就是topTobuttom=buttomTobuttom=black_view,再加上x轴方向固定 <TextView android:id="@+id/textView2" android:layout_width=" 阅读全文
posted @ 2022-11-20 16:19 Z_Chan 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 这种布局我先做个简单的介绍,我分段讲,这是相对布局的加强版 基本使用(模拟相对布局) 如何实现这种布局通过ConstraintLayout 直接上代码,这种怎么解释都没用,你自己试一下就会用了,我只能告诉你经验。布局编辑器可以拖,但是我们推荐直接写,写起来比拖舒服 代码 <TextView andr 阅读全文
posted @ 2022-11-17 13:41 Z_Chan 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 新建一个Person类 /** * Created by Mr.Chan * Time 2022-11-15 * Blog https://www.cnblogs.com/Frank-dev-blog/ */ public class Person { private String id; priv 阅读全文
posted @ 2022-11-15 13:13 Z_Chan 阅读(435) 评论(0) 推荐(0) 编辑
摘要: 效果图 手机安装gcc .data msg: .asciz "hello, gnu asm\n" len = .- msg .text .global main main: push {r0,r1,r2,lr} ldr r1,=msg mov r0, #1 ldr r2, =len mov %r7, 阅读全文
posted @ 2022-11-14 14:09 Z_Chan 阅读(361) 评论(0) 推荐(0) 编辑
摘要: debug -a mov ax,11 mov bx,12 add ax,bx mov ax,00 -t ;一条一条执行即可 ax bx cx dx都是寄存器 mov ax,11 ;ax=11H add ax,E ;ax=ax+EH debug默认16进制,因为四位二进制对应一位16进制,好用 阅读全文
posted @ 2022-11-13 11:51 Z_Chan 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 废话不多说直接上代码 导包 implementation 'com.loopj.android:android-async-http:1.4.11' http声明 <application android:usesCleartextTraffic="true" 函数 public void uplo 阅读全文
posted @ 2022-11-12 10:54 Z_Chan 阅读(99) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页