上一页 1 2 3 4 5 6 7 8 9 ··· 23 下一页
摘要: 数据处理的两个基本问题 处理的数据在哪里 cpu内部:寄存器,指令缓冲器(立即数) 内存 端口 处理的数据有多长 通过寄存器指明 通过标注指明: inc byte ptr [bx] inc word ptr [bx] 有些指令默认指明: push [1000H] 只进行 字操作 div指令 运算数 阅读全文
posted @ 2025-09-15 16:04 Miaops 阅读(46) 评论(0) 推荐(0)
摘要: loop指令实现循环 执行过程: ①(cx)=(cx)-1 ②判断 cx 中的值,不为零则转至标号处执行程序,如果为零则向下执行。 例:计算2^12 assume cs:codeseg codeseg segment mov ax,2 # 做11次add ax,ax mov cx,11 s: add 阅读全文
posted @ 2025-09-15 16:03 Miaops 阅读(34) 评论(0) 推荐(0)
摘要: 在代码段中使用数据 可以写出下面的程序 assume cs:code code segment dw 0123h,0456h,0789h,0abch,0cedfh,0fedh,0cbah,0987h mov bx,0 mov ax,0 mov cx,8 s: add ax,cs:[bx] add b 阅读全文
posted @ 2025-09-15 16:03 Miaops 阅读(31) 评论(0) 推荐(0)
摘要: 内存视图 内存由低至高从上往下画 栈的生长方向:高地址向低地址 小端存储:高位存放在高地址,低位存放在低地址 书写的时候高位在左边。 4E20H 存储单元高地址在右边。 0 - 3 : 20 4E 12 00 mov指令 mov ax,1000h mov ds,ax mov [0],bx #传送字型 阅读全文
posted @ 2025-09-15 16:02 Miaops 阅读(50) 评论(0) 推荐(0)
摘要: 14个寄存器,都是16位 AX BX CX DX SI DI SP BP IP CS SS DS ES PSW 通用寄存器:AX BX CX DX 段寄存器:CS DS SS ES cpu分段寻址 8086是16位机,寄存器,运算器,寄存器与运算器的通路都是16位的,那么又是如何达到20位的地址总线 阅读全文
posted @ 2025-09-15 16:00 Miaops 阅读(75) 评论(0) 推荐(0)
摘要: 汇编语言的组成 汇编指令:机器码的助记符,有相应的机器码 伪指令:没有对应的机器码,由编译器执行,计算机不执行 其他符号:如+ - * / 由编译器识别,没有对应的机器码 汇编指令是汇编语言的核心 指令与数据是应用上的概念,在x86架构中,指令和数据存放在内存或磁盘中没有任何区别,是指令还是数据取决 阅读全文
posted @ 2025-09-15 15:59 Miaops 阅读(61) 评论(0) 推荐(0)
摘要: 课程视频 Bilibili:https://www.bilibili.com/video/BV1ux411G7Bs/?spm_id_from=333.337.search-card.all.click 笔记索引 东南大学数据库课程01-数据库原理及应用引言 东南大学数据库课程02-DataModel 阅读全文
posted @ 2025-09-15 15:20 Miaops 阅读(73) 评论(0) 推荐(0)
摘要: Distributed Database Systems 目录Distributed Database SystemsIntroductionDatabase DistributionStrategies of Data DistributionUnit of Data DistributionPr 阅读全文
posted @ 2025-09-15 15:15 Miaops 阅读(27) 评论(0) 推荐(0)
摘要: Database Design 目录Database DesignData DependencyNormalization of Relational Schema1NF2NFProblems of non 2NF3NFProblems of non 3NFSummaryER Model and E 阅读全文
posted @ 2025-09-15 15:14 Miaops 阅读(29) 评论(0) 推荐(0)
摘要: The Security and Integrity Constraints 目录The Security and Integrity ConstraintsIntroductionSecurity of DataBaseIntegrity ConstraintsType of Integrity 阅读全文
posted @ 2025-09-15 15:14 Miaops 阅读(25) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 23 下一页