上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页
摘要: 就是把dw那一行的每个字的数据,求三次方,然后存到 dd 那一行 assume cs:code,ds:data data segment dw 1,2,3,4,5,6,7,8 dd 0,0,0,0,0,0,0,0 ;; 双字,32位 data ends code segment main: mov 阅读全文
posted @ 2023-04-01 11:41 皮豪 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 使用问题 阅读全文
posted @ 2023-03-30 06:50 皮豪 阅读(2) 评论(0) 推荐(0) 编辑
摘要: TypeScript 教程 - 菜鸟教程:https://www.runoob.com/typescript/ts-tutorial.html TypeScript Handbook - 中文版:https://zhongsp.gitbooks.io/typescript-handbook/cont 阅读全文
posted @ 2023-03-28 07:34 皮豪 阅读(41) 评论(0) 推荐(0) 编辑
摘要: Java设计模式 解决普遍存在的问题,反复出现的各种问题,所提出的解决方案。 设计模式七大原则 设计模式七大原则: 单一职责 接口隔离 依赖倒转 里氏替换 开闭原则 迪米特法则 合成复用原则 面向对象 => 功能模块[设计模式+算法] => 框架[调用多种模式] => 架构[服务器集群] 单一职责原 阅读全文
posted @ 2023-03-25 12:35 皮豪 阅读(69) 评论(0) 推荐(0) 编辑
摘要: ;; 编码 (set-language-info "UTF-8" 'coding-priority '(utf-8 gb18030 gbk gb2312 iso-2022-cn chinese-big5 chinese-iso-8bit iso-8859-1)) (prefer-coding-sys 阅读全文
posted @ 2023-03-25 07:41 皮豪 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 效果如下 8086汇编代码如下 assume cs:code,ds:data data segment db 'ABCDEF' data ends code segment start: mov ax,data mov ds,ax mov ax,0B800H mov es,ax mov cx,8 m 阅读全文
posted @ 2023-03-16 23:10 皮豪 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 如果您已经删除了 VMware,但是 WSL2 仍然无法正常工作,可能是因为 VMware 安装期间对系统进行了一些更改,导致 WSL2 无法正常运行。您可以尝试按照以下步骤来修复 WSL2: 打开 PowerShell(管理员权限),运行以下命令: dism.exe /online /cleanu 阅读全文
posted @ 2023-03-11 14:31 皮豪 阅读(307) 评论(0) 推荐(1) 编辑
摘要: ![image](https://img2023.cnblogs.com/blog/2146100/202303/2146100-20230308210138265-108174517.png)![image](https://img2023.cnblogs.com/blog/2146100/202303/2146100-20230308210147532-1255988577.png) 阅读全文
posted @ 2023-03-08 21:02 皮豪 阅读(12) 评论(0) 推荐(0) 编辑
摘要: "开启行号 set nu "禁止生成备份文件 set nobackup set noundofile set noswapfile syntax on " 语法高亮 "更换字体 set guifont=Consolas:h11 "更换主题 colorscheme evening if has("gu 阅读全文
posted @ 2023-03-07 13:58 皮豪 阅读(15) 评论(0) 推荐(0) 编辑
摘要: assume cs:code,ds:data data segment db 'BaSic' db 'INFORMaTION' data ends code segment start: mov ax,data mov ds,ax mov bx,0 mov cx,5 s: mov al,[bx] a 阅读全文
posted @ 2023-03-06 11:04 皮豪 阅读(33) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页