sum.inc

来自「想学习汇编语言的」· INC 代码 · 共 18 行

INC
18
字号
; Include file for the ArraySum Program      (sum.inc)

; Last update: 11/7/01

INCLUDE Irvine32.inc

PromptForIntegers PROTO,
	ptrPrompt:PTR BYTE,		; prompt string
	ptrArray:PTR DWORD,		; points to the array
	arraySize:DWORD		; size of the array

ArraySum PROTO,
	ptrArray:PTR DWORD,		; points to the array
	count:DWORD		; size of the array

DisplaySum PROTO,
	ptrPrompt:PTR BYTE,		; prompt string
	theSum:DWORD		; sum of the array

⌨️ 快捷键说明

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