data.asm

来自「工欲善其事」· 汇编 代码 · 共 10 行

ASM
10
字号
MAX_SMILIES		equ		30

.data?
SmileyArray		dd		MAX_SMILIES dup (?)      ;Finite array size when compilied
                                                       ; As an alternate, one could use
                                                       ; the Linked List object instead
                                                       ; to create a dynamic array that
                                                       ; can grow at run time, but for 
                                                       ; simplicity this will surfice for
                                                       ; the graphical object example.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?