;简化段定义模板 title 简化段定义.model small ;定义存储类型.data ;数据段 要进行段装入,不用assume声明了mess1 db 'fenglei'extra segment ;简化段定义的缺陷,没有附加段mess db 7 dup(?) ;定义一个数组extra ends ...
分类:
其他好文 时间:
2020-10-27 11:08:38
阅读次数:
35
rootview.h #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface RootViewController : UIViewController @end rootview.m #import "RootViewControlle ...
分类:
其他好文 时间:
2020-08-08 21:24:32
阅读次数:
87
上次学会使用update-index --assume-unchanged后,大量用update-index --assume-unchanged来忽略文件,等到项目结束要提交代码时才疯了,哪些文件被我忽略了?由于之前没有做记录,忽略的文件完全没有印象,只好想办法啦,目前只找到下面这个方法: git ...
分类:
其他好文 时间:
2020-07-22 15:43:04
阅读次数:
64
目标:将下图数据按照格式输出到屏幕上 数据的预处理 将下图内容 显示到: assume cs:code data segment db '1975','1976','1977','1978','1979','1980','1981','1982','1983','1984','1985' db '1 ...
分类:
其他好文 时间:
2020-07-19 11:35:34
阅读次数:
61
Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child i has a g ...
分类:
其他好文 时间:
2020-07-03 12:57:57
阅读次数:
63
感谢 https://blog.csdn.net/Wenco1/article/details/88664246 https://blog.csdn.net/DaSunWarman/article/details/79384307 忽略 $ git update-index --assume-unc ...
分类:
Web程序 时间:
2020-06-28 12:40:32
阅读次数:
72
Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary). You may assume that the intervals were initia ...
分类:
其他好文 时间:
2020-06-15 10:10:12
阅读次数:
62
#import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface UIImageView (WZGif) /// 加载本地gif /// @param imageName gif名字 - (void)showGifImageLocalWithIma ...
分类:
其他好文 时间:
2020-06-12 13:03:28
阅读次数:
123
第一题,显示字符串,8行3列显示Welcome to masm! assume cs:codedata segmentdb 'Welcome to masm!',0data endscode segmentstart: mov dh,8;行号 mov dl,3;列号 mov cl,2;颜色 mov ...
分类:
其他好文 时间:
2020-05-24 12:07:34
阅读次数:
84
Given inorder and postorder traversal of a tree, construct the binary tree. Note:You may assume that duplicates do not exist in the tree. For example, ...
分类:
其他好文 时间:
2020-05-22 13:12:40
阅读次数:
54