stack.asm

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

ASM
21
字号
TITLE Program Template     (Stack.asm)

; Testing PUSH and POP, 16-bit and 32-bit operands
; Last update: 11/16/01

Include Irvine32.inc

.code
main PROC

	call DumpRegs
	push 1
	call DumpRegs
	push eax
	call DumpRegs
	push eax
	call DumpRegs

	exit
main ENDP
END main

⌨️ 快捷键说明

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