题目描述: 多字节数据求和,求无符号数Ai的累加和。Ai为单字节数,并按i(i=1,2,3,...,,n)顺序存放在RAM从60H开始的单元中,n放在R2中,求他们的和(双字节)高位放在R3,低位放在R4中。 算法思想: 向让低四位相加求和(ADD),如果有进位(CY=1),则对高四位用ADDC,并 ...
分类:
其他好文 时间:
2021-07-01 17:08:12
阅读次数:
0
//-n 预览需要删除版本控制的文件列表 git rm -r -n --cached "vendor" //执行删除命令 git rm -r --cached "vendor" //添加文件到.gitignore //提交git commit -m "remove vendor" //提交到远程服务 ...
分类:
其他好文 时间:
2021-07-01 17:03:23
阅读次数:
0
ES5 构造函数 function Person(){ this.name='建林'; this.age=18; this.say=function(){ console.log('person的say') } } let p1=new Person(); console.log(p1.name); ...
分类:
其他好文 时间:
2021-06-30 18:00:57
阅读次数:
0
若有一个下三角阵,不包括对角元,其矩阵元为 \[ A_{ij}, ~~~~ i = 1, \cdots, n-1, ~~~~ j=0,\cdots, i-1. \] 那么,可以用一维数组储存这些矩阵元: \[ a[k] = A_{ij}, ~~~ k = i(i-1)/2 + j. \] 这样可以将 ...
分类:
编程语言 时间:
2021-06-30 17:52:18
阅读次数:
0
For example, if an interface is selected when you invoke the Quick Type Hierarchy, the list displays all the known classes that implement the interfac ...
分类:
系统相关 时间:
2021-06-30 17:33:09
阅读次数:
0
MSTP【Muliti STP】多生成树协议工作原理:将多个vlan捆绑在一起,运行在一个stp实例里面,不同实例间stp互相独立运行,默认情况下所有vlan都在实例0里面 网络拓扑图: 如果上图拓扑不进行配置的话,交换机SW 3的G0/0/1口将被阻塞,而对于vlan 10和vlan 30的用户来 ...
分类:
其他好文 时间:
2021-06-29 15:22:15
阅读次数:
0
块元素与内联元素 块元素 独占一行,默认情况下,其宽度自动填满其父元素宽度 可以设置width,height属性 可以设置margin和padding属性 内联元素 相邻的行内元素会排列在同一行里,直到一行排不下,才会换行,其宽度随元素的内容而变化 不支持设置width,height 除了margi ...
分类:
Web程序 时间:
2021-06-28 20:37:20
阅读次数:
0
1,对基本概念梳理 https://www.cnblogs.com/kai-nutshell/p/12968454.html https://www.cnblogs.com/kai-nutshell/p/12968484.html https://www.cnblogs.com/kai-nutshe ...
分类:
其他好文 时间:
2021-06-28 20:30:58
阅读次数:
0
throw 抛异常 throw new Exception('参数只能是数字') try...catch 异常 try { //抛异常的代码 } catch (Exception $e) { echo $e->getMessage(); } 实例 /src/TestException.php (抛异 ...
分类:
其他好文 时间:
2021-06-28 19:30:58
阅读次数:
0
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> *{ margin: 0; padding: 0; } .boss{ display: block; width: ...
分类:
其他好文 时间:
2021-06-28 18:25:49
阅读次数:
0